Merge pull request #24760 from matthewbauer/linux-only-pkgs
Mark linux-only pkgs
This commit is contained in:
commit
4e307b644a
@ -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 ];
|
||||||
};
|
};
|
||||||
|
@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
|||||||
sed -i 's|/usr/|/|g' Makefile
|
sed -i 's|/usr/|/|g' Makefile
|
||||||
'';
|
'';
|
||||||
|
|
||||||
makeFlags = "shared";
|
makeFlags = [ "shared" ];
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
make install DESTDIR=$out/ LIBDIR=lib
|
make install DESTDIR=$out/ LIBDIR=lib
|
||||||
@ -28,6 +28,6 @@ stdenv.mkDerivation rec {
|
|||||||
license = licenses.bsd2;
|
license = licenses.bsd2;
|
||||||
homepage = https://github.com/wfeldt/libx86emu;
|
homepage = https://github.com/wfeldt/libx86emu;
|
||||||
maintainers = with maintainers; [ bobvanderlinden ];
|
maintainers = with maintainers; [ bobvanderlinden ];
|
||||||
platforms = platforms.unix;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -25,6 +25,6 @@ stdenv.mkDerivation rec {
|
|||||||
license = licenses.lgpl2;
|
license = licenses.lgpl2;
|
||||||
homepage = https://01.org/linux-nfc;
|
homepage = https://01.org/linux-nfc;
|
||||||
maintainers = with maintainers; [ tstrobel ];
|
maintainers = with maintainers; [ tstrobel ];
|
||||||
platforms = platforms.unix;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -62,8 +62,8 @@ stdenv.mkDerivation rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
platforms = stdenv.lib.platforms.all;
|
platforms = stdenv.lib.platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -20,7 +20,7 @@ stdenv.mkDerivation {
|
|||||||
meta = {
|
meta = {
|
||||||
homepage = http://linux.techass.com/projects/xdb/;
|
homepage = http://linux.techass.com/projects/xdb/;
|
||||||
description = "C++ class library formerly known as XDB";
|
description = "C++ class library formerly known as XDB";
|
||||||
platforms = stdenv.lib.platforms.all;
|
platforms = stdenv.lib.platforms.linux;
|
||||||
maintainers = [ ];
|
maintainers = [ ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
|
|||||||
description = "A program that launches a given program when your X session has been idle for a given time.";
|
description = "A program that launches a given program when your X session has been idle for a given time.";
|
||||||
homepage = http://www.ibiblio.org/pub/linux/X11/screensavers;
|
homepage = http://www.ibiblio.org/pub/linux/X11/screensavers;
|
||||||
maintainers = with maintainers; [ garbas ];
|
maintainers = with maintainers; [ garbas ];
|
||||||
platforms = platforms.unix;
|
platforms = platforms.linux;
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -57,6 +57,6 @@ in stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
homepage = ftp://ftp.porcupine.org/pub/security/index.html;
|
homepage = ftp://ftp.porcupine.org/pub/security/index.html;
|
||||||
license = "BSD-style";
|
license = "BSD-style";
|
||||||
platforms = stdenv.lib.platforms.unix;
|
platforms = stdenv.lib.platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -76,7 +76,7 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
homepage = "http://www.pizzashack.org/rssh/";
|
homepage = "http://www.pizzashack.org/rssh/";
|
||||||
license = licenses.bsd2;
|
license = licenses.bsd2;
|
||||||
platforms = platforms.unix;
|
platforms = platforms.linux;
|
||||||
maintainers = with maintainers; [ arobyn ];
|
maintainers = with maintainers; [ arobyn ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -14,9 +14,9 @@ buildGoPackage rec {
|
|||||||
sha256 = "1lj9czippsgkhr8y3r7vwxgc8i952v76v1shdv10p43gsxwyyi9a";
|
sha256 = "1lj9czippsgkhr8y3r7vwxgc8i952v76v1shdv10p43gsxwyyi9a";
|
||||||
};
|
};
|
||||||
|
|
||||||
# TODO: add metadata https://nixos.org/nixpkgs/manual/#sec-standard-meta-attributes
|
|
||||||
meta = {
|
meta = {
|
||||||
license = lib.licenses.asl20;
|
license = lib.licenses.asl20;
|
||||||
|
platforms = lib.platforms.linux;
|
||||||
maintainers = [];
|
maintainers = [];
|
||||||
homepage = https://cloud.google.com/storage/docs/gcs-fuse;
|
homepage = https://cloud.google.com/storage/docs/gcs-fuse;
|
||||||
description =
|
description =
|
||||||
|
@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
|||||||
homepage = "https://github.com/scanmem/scanmem";
|
homepage = "https://github.com/scanmem/scanmem";
|
||||||
description = "Memory scanner for finding and poking addresses in executing processes";
|
description = "Memory scanner for finding and poking addresses in executing processes";
|
||||||
maintainers = [ maintainers.chattered ];
|
maintainers = [ maintainers.chattered ];
|
||||||
platforms = with platforms; linux ++ darwin;
|
platforms = platforms.linux;
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -32,6 +32,6 @@ stdenv.mkDerivation rec {
|
|||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
homepage = https://github.com/openSUSE/hwinfo;
|
homepage = https://github.com/openSUSE/hwinfo;
|
||||||
maintainers = with maintainers; [ bobvanderlinden ndowens ];
|
maintainers = with maintainers; [ bobvanderlinden ndowens ];
|
||||||
platforms = platforms.unix;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
license = stdenv.lib.licenses.gpl2Plus;
|
license = stdenv.lib.licenses.gpl2Plus;
|
||||||
|
|
||||||
platforms = stdenv.lib.platforms.all;
|
platforms = stdenv.lib.platforms.linux;
|
||||||
maintainers = [ stdenv.lib.maintainers.bluescreen303 ];
|
maintainers = [ stdenv.lib.maintainers.bluescreen303 ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user