mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 22:03:54 +03:00
yasr: make linux-only
This commit is contained in:
parent
f48cd9503d
commit
94acb5b780
@ -2,26 +2,26 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "yasr-${version}";
|
name = "yasr-${version}";
|
||||||
|
|
||||||
version = "0.6.9";
|
version = "0.6.9";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://sourceforge.net/projects/yasr/files/yasr/${version}/${name}.tar.gz";
|
url = "https://sourceforge.net/projects/yasr/files/yasr/${version}/${name}.tar.gz";
|
||||||
sha256 = "1prv9r9y6jb5ga5578ldiw507fa414m60xhlvjl29278p3x7rwa1";
|
sha256 = "1prv9r9y6jb5ga5578ldiw507fa414m60xhlvjl29278p3x7rwa1";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
./10_fix_openpty_forkpty_declarations
|
./10_fix_openpty_forkpty_declarations
|
||||||
./20_maxpathlen
|
./20_maxpathlen
|
||||||
./30_conf
|
./30_conf
|
||||||
./40_dectalk_extended_chars
|
./40_dectalk_extended_chars
|
||||||
]; # taken from the debian yasr package
|
]; # taken from the debian yasr package
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "http://yasr.sourceforge.net";
|
homepage = "http://yasr.sourceforge.net";
|
||||||
description = "A general-purpose console screen reader";
|
description = "A general-purpose console screen reader";
|
||||||
longDescription = "Yasr is a general-purpose console screen reader for GNU/Linux and other Unix-like operating systems.";
|
longDescription = "Yasr is a general-purpose console screen reader for GNU/Linux and other Unix-like operating systems.";
|
||||||
platforms = stdenv.lib.platforms.unix;
|
platforms = stdenv.lib.platforms.linux;
|
||||||
license = stdenv.lib.licenses.gpl2;
|
license = stdenv.lib.licenses.gpl2;
|
||||||
maintainers = with stdenv.lib.maintainers; [ jhhuh ];
|
maintainers = with stdenv.lib.maintainers; [ jhhuh ];
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user