Set some meta.platforms
Also fix meta.platform -> meta.platforms in a few places.
This commit is contained in:
parent
0461f35894
commit
2ed5c2bd6b
|
@ -24,5 +24,6 @@ stdenv.mkDerivation {
|
||||||
description = "A GTK+-based Usenet newsreader good at both text and binaries";
|
description = "A GTK+-based Usenet newsreader good at both text and binaries";
|
||||||
homepage = http://pan.rebelbase.com/;
|
homepage = http://pan.rebelbase.com/;
|
||||||
maintainers = [ stdenv.lib.maintainers.eelco ];
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,5 +13,6 @@ stdenv.mkDerivation rec {
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://sethwklein.net/projects/iana-etc/;
|
homepage = http://sethwklein.net/projects/iana-etc/;
|
||||||
description = "IANA protocol and port number assignments (/etc/protocols and /etc/services)";
|
description = "IANA protocol and port number assignments (/etc/protocols and /etc/services)";
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
|
||||||
# The source code implementing the Marsenne Twister algorithm is licensed
|
# The source code implementing the Marsenne Twister algorithm is licensed
|
||||||
# under the 3-clause BSD license. The rest is 2-clause BSD license.
|
# under the 3-clause BSD license. The rest is 2-clause BSD license.
|
||||||
license = stdenv.lib.licenses.bsd3;
|
license = stdenv.lib.licenses.bsd3;
|
||||||
platform = stdenv.lib.platforms.linux;
|
platforms = stdenv.lib.platforms.linux;
|
||||||
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
|
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,9 +18,7 @@ let
|
||||||
|
|
||||||
in
|
in
|
||||||
|
|
||||||
with {
|
with stdenv.lib;
|
||||||
inherit (stdenv.lib) optional optionalString;
|
|
||||||
};
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "perl-5.20.1";
|
name = "perl-5.20.1";
|
||||||
|
@ -79,4 +77,11 @@ stdenv.mkDerivation rec {
|
||||||
setupHook = ./setup-hook.sh;
|
setupHook = ./setup-hook.sh;
|
||||||
|
|
||||||
passthru.libPrefix = "lib/perl5/site_perl";
|
passthru.libPrefix = "lib/perl5/site_perl";
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = https://www.perl.org/;
|
||||||
|
description = "The standard implementation of the Perl 5 programmming language";
|
||||||
|
maintainers = [ maintainers.eelco ];
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -37,7 +37,7 @@ stdenv.mkDerivation rec {
|
||||||
'';
|
'';
|
||||||
homepage = https://github.com/engla/keybinder/;
|
homepage = https://github.com/engla/keybinder/;
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
platform = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = [ maintainers.bjornfor ];
|
maintainers = [ maintainers.bjornfor ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
|
||||||
description = "Library for registering global key bindings";
|
description = "Library for registering global key bindings";
|
||||||
homepage = https://github.com/engla/keybinder/;
|
homepage = https://github.com/engla/keybinder/;
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
platform = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = [ maintainers.cstrahan ];
|
maintainers = [ maintainers.cstrahan ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,6 +14,6 @@ stdenv.mkDerivation rec {
|
||||||
description = "An abstraction library for audio visualisations";
|
description = "An abstraction library for audio visualisations";
|
||||||
homepage = "http://sourceforge.net/projects/libvisual/";
|
homepage = "http://sourceforge.net/projects/libvisual/";
|
||||||
license = stdenv.lib.licenses.lgpl21Plus;
|
license = stdenv.lib.licenses.lgpl21Plus;
|
||||||
platform = stdenv.lib.platforms.unix;
|
platforms = stdenv.lib.platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
|
||||||
description = "A multi-platform programmer's library designed to allow a developer to create robust software";
|
description = "A multi-platform programmer's library designed to allow a developer to create robust software";
|
||||||
homepage = http://www.jedsoft.org/slang/;
|
homepage = http://www.jedsoft.org/slang/;
|
||||||
license = stdenv.lib.licenses.gpl2Plus;
|
license = stdenv.lib.licenses.gpl2Plus;
|
||||||
platform = stdenv.lib.platforms.unix;
|
platforms = stdenv.lib.platforms.unix;
|
||||||
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
|
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -44,6 +44,6 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
license = stdenv.lib.licenses.gpl2Plus;
|
license = stdenv.lib.licenses.gpl2Plus;
|
||||||
|
|
||||||
maintainers = [ ];
|
platforms = stdenv.lib.platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -43,6 +43,6 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
license = stdenv.lib.licenses.gpl2Plus;
|
license = stdenv.lib.licenses.gpl2Plus;
|
||||||
|
|
||||||
maintainers = [ ];
|
platforms = stdenv.lib.platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -49,6 +49,6 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
license = stdenv.lib.licenses.gpl2Plus;
|
license = stdenv.lib.licenses.gpl2Plus;
|
||||||
|
|
||||||
maintainers = [ ];
|
platforms = stdenv.lib.platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -37,5 +37,7 @@ stdenv.mkDerivation rec {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
maintainers = [ stdenv.lib.maintainers.simons ];
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
||||||
|
|
||||||
|
platforms = stdenv.lib.platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -37,5 +37,7 @@ stdenv.mkDerivation rec {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
maintainers = [ stdenv.lib.maintainers.simons ];
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
||||||
|
|
||||||
|
platforms = stdenv.lib.platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,16 +2,18 @@
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "rogue-5.4.4";
|
name = "rogue-5.4.4";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = http://rogue.rogueforge.net/files/rogue5.4/rogue5.4.4-src.tar.gz;
|
url = http://rogue.rogueforge.net/files/rogue5.4/rogue5.4.4-src.tar.gz;
|
||||||
sha256 = "18g81274d0f7sr04p7h7irz0d53j6kd9j1y3zbka1gcqq0gscdvx";
|
sha256 = "18g81274d0f7sr04p7h7irz0d53j6kd9j1y3zbka1gcqq0gscdvx";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ncurses];
|
buildInputs = [ ncurses ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://rogue.rogueforge.net/rogue-5-4/;
|
homepage = http://rogue.rogueforge.net/rogue-5-4/;
|
||||||
description = "The final version of the original Rogue game developed for the UNIX operating system";
|
description = "The final version of the original Rogue game developed for the UNIX operating system";
|
||||||
|
platforms = stdenv.lib.platforms.all;
|
||||||
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -54,5 +54,6 @@ stdenv.mkDerivation rec {
|
||||||
meta = {
|
meta = {
|
||||||
homepage = ftp://ftp.altlinux.org/pub/people/legion/kbd/;
|
homepage = ftp://ftp.altlinux.org/pub/people/legion/kbd/;
|
||||||
description = "Linux keyboard utilities and keyboard maps";
|
description = "Linux keyboard utilities and keyboard maps";
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,9 +14,9 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "A utility for viewing/manipulating the MAC address of network interfaces";
|
description = "A utility for viewing/manipulating the MAC address of network interfaces";
|
||||||
maintainers = with stdenv.lib.maintainers; [ joachifm ];
|
maintainers = [ stdenv.lib.maintainers.joachifm ];
|
||||||
license = with stdenv.lib.licenses; gpl2Plus;
|
license = stdenv.lib.licenses.gpl2Plus;
|
||||||
homepage = "https://www.gnu.org/software/macchanger";
|
homepage = "https://www.gnu.org/software/macchanger";
|
||||||
platform = with stdenv.lib.platforms; linux;
|
platforms = stdenv.lib.platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
{stdenv, fetchurl}:
|
{ stdenv, fetchurl }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "mingetty-1.08";
|
name = "mingetty-1.08";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = mirror://sourceforge/mingetty/mingetty-1.08.tar.gz;
|
url = mirror://sourceforge/mingetty/mingetty-1.08.tar.gz;
|
||||||
sha256 = "05yxrp44ky2kg6qknk1ih0kvwkgbn9fbz77r3vci7agslh5wjm8g";
|
sha256 = "05yxrp44ky2kg6qknk1ih0kvwkgbn9fbz77r3vci7agslh5wjm8g";
|
||||||
|
@ -19,5 +19,6 @@ stdenv.mkDerivation {
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://sourceforge.net/projects/mingetty;
|
homepage = http://sourceforge.net/projects/mingetty;
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,5 +21,6 @@ stdenv.mkDerivation {
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "A system logging daemon";
|
description = "A system logging daemon";
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -43,5 +43,6 @@ stdenv.mkDerivation {
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://www.nongnu.org/sysvinit/;
|
homepage = http://www.nongnu.org/sysvinit/;
|
||||||
description = "Utilities related to booting and shutdown";
|
description = "Utilities related to booting and shutdown";
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -32,5 +32,6 @@ stdenv.mkDerivation rec {
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://www.linux-usb.org/;
|
homepage = http://www.linux-usb.org/;
|
||||||
description = "Tools for working with USB devices, such as lsusb";
|
description = "Tools for working with USB devices, such as lsusb";
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -52,5 +52,6 @@ stdenv.mkDerivation rec {
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://www.kernel.org/pub/linux/utils/util-linux/;
|
homepage = http://www.kernel.org/pub/linux/utils/util-linux/;
|
||||||
description = "A set of system utilities for Linux";
|
description = "A set of system utilities for Linux";
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "gpm-1.20.6";
|
name = "gpm-1.20.6";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://www.nico.schottelius.org/software/gpm/archives/${name}.tar.bz2";
|
url = "http://www.nico.schottelius.org/software/gpm/archives/${name}.tar.bz2";
|
||||||
sha256 = "1990i19ddzn8gg5xwm53yn7d0mya885f48sd2hyvr7dvzyaw7ch8";
|
sha256 = "1990i19ddzn8gg5xwm53yn7d0mya885f48sd2hyvr7dvzyaw7ch8";
|
||||||
|
@ -28,5 +28,7 @@ stdenv.mkDerivation rec {
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://www.nico.schottelius.org/software/gpm/;
|
homepage = http://www.nico.schottelius.org/software/gpm/;
|
||||||
description = "A daemon that provides mouse support on the Linux console";
|
description = "A daemon that provides mouse support on the Linux console";
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -40,5 +40,6 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
homepage = http://neil.brown.name/portmap/;
|
homepage = http://neil.brown.name/portmap/;
|
||||||
license = "BSD";
|
license = "BSD";
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -76,6 +76,8 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
license = stdenv.lib.licenses.gpl3Plus;
|
license = stdenv.lib.licenses.gpl3Plus;
|
||||||
|
|
||||||
|
platforms = stdenv.lib.platforms.all;
|
||||||
|
|
||||||
maintainers = [ stdenv.lib.maintainers.simons ];
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -40,6 +40,6 @@ stdenv.mkDerivation {
|
||||||
homepage = http://liquidsoap.fm/;
|
homepage = http://liquidsoap.fm/;
|
||||||
maintainers = with maintainers; [ emery ];
|
maintainers = with maintainers; [ emery ];
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
platform = ocaml.meta.platforms;
|
platforms = ocaml.meta.platforms;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -29,6 +29,8 @@ stdenv.mkDerivation rec {
|
||||||
is just a bonus.
|
is just a bonus.
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
platforms = stdenv.lib.platforms.all;
|
||||||
|
|
||||||
license = stdenv.lib.licenses.gpl3Plus;
|
license = stdenv.lib.licenses.gpl3Plus;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,5 +14,6 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "IBM JFS utilities";
|
description = "IBM JFS utilities";
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -82,6 +82,8 @@ let
|
||||||
|
|
||||||
license = stdenv.lib.licenses.gpl3Plus;
|
license = stdenv.lib.licenses.gpl3Plus;
|
||||||
|
|
||||||
|
platforms = stdenv.lib.platforms.all;
|
||||||
|
|
||||||
maintainers = [ stdenv.lib.maintainers.eelco ];
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -38,6 +38,8 @@ stdenv.mkDerivation rec {
|
||||||
* xargs - build and execute command lines from standard input.
|
* xargs - build and execute command lines from standard input.
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
platforms = stdenv.lib.platforms.all;
|
||||||
|
|
||||||
license = stdenv.lib.licenses.gpl3Plus;
|
license = stdenv.lib.licenses.gpl3Plus;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -52,4 +52,7 @@ stdenv.mkDerivation {
|
||||||
|
|
||||||
passthru.grubTarget = "";
|
passthru.grubTarget = "";
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,5 +27,6 @@ stdenv.mkDerivation {
|
||||||
description = "Tool for displaying hard disk temperature";
|
description = "Tool for displaying hard disk temperature";
|
||||||
homepage = https://savannah.nongnu.org/projects/hddtemp/;
|
homepage = https://savannah.nongnu.org/projects/hddtemp/;
|
||||||
license = stdenv.lib.licenses.gpl2;
|
license = stdenv.lib.licenses.gpl2;
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
|
||||||
description = "Readline wrapper for console programs";
|
description = "Readline wrapper for console programs";
|
||||||
homepage = http://utopia.knoware.nl/~hlub/uck/rlwrap/;
|
homepage = http://utopia.knoware.nl/~hlub/uck/rlwrap/;
|
||||||
license = stdenv.lib.licenses.gpl2Plus;
|
license = stdenv.lib.licenses.gpl2Plus;
|
||||||
platform = stdenv.lib.platforms.unix;
|
platforms = stdenv.lib.platforms.unix;
|
||||||
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
|
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,5 +11,6 @@ stdenv.mkDerivation rec {
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://zakalwe.fi/~shd/foss/cksfv/;
|
homepage = http://zakalwe.fi/~shd/foss/cksfv/;
|
||||||
description = "A tool for verifying files against a SFV checksum file";
|
description = "A tool for verifying files against a SFV checksum file";
|
||||||
|
platforms = stdenv.lib.platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,6 +15,6 @@ stdenv.mkDerivation rec {
|
||||||
homepage = http://dnscrypt.org/;
|
homepage = http://dnscrypt.org/;
|
||||||
license = with stdenv.lib.licenses; [ isc ];
|
license = with stdenv.lib.licenses; [ isc ];
|
||||||
maintainers = with stdenv.lib.maintainers; [ joachifm ];
|
maintainers = with stdenv.lib.maintainers; [ joachifm ];
|
||||||
platform = stdenv.lib.platforms.all;
|
platforms = stdenv.lib.platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,24 +1,26 @@
|
||||||
{ fetchurl, stdenv }:
|
{ fetchurl, stdenv }:
|
||||||
|
|
||||||
let version = "20000331"; in
|
let version = "20000331"; in
|
||||||
stdenv.mkDerivation {
|
|
||||||
name = "host-${version}";
|
|
||||||
|
|
||||||
src = fetchurl {
|
stdenv.mkDerivation {
|
||||||
url = "mirror://debian/pool/main/h/host/host_${version}.orig.tar.gz";
|
name = "host-${version}";
|
||||||
sha256 = "1g352k80arhwyidsa95nk28xjvzyypmwv3kga2451m3g7fmdqki1";
|
|
||||||
};
|
|
||||||
|
|
||||||
preConfigure = ''
|
src = fetchurl {
|
||||||
makeFlagsArray=(DESTBIN=$out/bin DESTMAN=$out/share/man OWNER=$(id -u) GROUP=$(id -g))
|
url = "mirror://debian/pool/main/h/host/host_${version}.orig.tar.gz";
|
||||||
mkdir -p "$out/bin"
|
sha256 = "1g352k80arhwyidsa95nk28xjvzyypmwv3kga2451m3g7fmdqki1";
|
||||||
mkdir -p "$out/share/man/man1"
|
};
|
||||||
'';
|
|
||||||
|
|
||||||
installTargets = "install man";
|
preConfigure = ''
|
||||||
|
makeFlagsArray=(DESTBIN=$out/bin DESTMAN=$out/share/man OWNER=$(id -u) GROUP=$(id -g))
|
||||||
|
mkdir -p "$out/bin"
|
||||||
|
mkdir -p "$out/share/man/man1"
|
||||||
|
'';
|
||||||
|
|
||||||
meta = {
|
installTargets = "install man";
|
||||||
description = "DNS resolution utility";
|
|
||||||
license = "BSD-style";
|
meta = {
|
||||||
};
|
description = "DNS resolution utility";
|
||||||
}
|
license = "BSD-style";
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
|
@ -21,6 +21,6 @@ stdenv.mkDerivation rec {
|
||||||
description = "Minimal I2P router written in C++";
|
description = "Minimal I2P router written in C++";
|
||||||
licenses = licenses.gpl2;
|
licenses = licenses.gpl2;
|
||||||
maintainers = with maintainers; [ edwtjo ];
|
maintainers = with maintainers; [ edwtjo ];
|
||||||
platform = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
|
||||||
any kind of file.
|
any kind of file.
|
||||||
'';
|
'';
|
||||||
license = stdenv.lib.licenses.gpl2Plus;
|
license = stdenv.lib.licenses.gpl2Plus;
|
||||||
maintainers = with stdenv.lib.maintainers; [ muflax ];
|
maintainers = [ stdenv.lib.maintainers.muflax ];
|
||||||
|
platforms = stdenv.lib.platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,5 +21,6 @@ stdenv.mkDerivation rec {
|
||||||
homepage = http://www.tcpdump.org/;
|
homepage = http://www.tcpdump.org/;
|
||||||
license = "BSD-style";
|
license = "BSD-style";
|
||||||
maintainers = [ stdenv.lib.maintainers.mornfall ];
|
maintainers = [ stdenv.lib.maintainers.mornfall ];
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,13 +15,14 @@ stdenv.mkDerivation rec {
|
||||||
NIX_CFLAGS_COMPILE = "-I${nspr}/include/nspr -I${nss}/include/nss -I${elfutils}/include";
|
NIX_CFLAGS_COMPILE = "-I${nspr}/include/nspr -I${nss}/include/nss -I${elfutils}/include";
|
||||||
|
|
||||||
NIX_CFLAGS_LINK = "-L${elfutils}/lib";
|
NIX_CFLAGS_LINK = "-L${elfutils}/lib";
|
||||||
|
|
||||||
configureFlags = "--with-external-db --without-lua --enable-python";
|
configureFlags = "--with-external-db --without-lua --enable-python";
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://www.rpm.org/;
|
homepage = http://www.rpm.org/;
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
description = "The RPM Package Manager";
|
description = "The RPM Package Manager";
|
||||||
maintainers = with maintainers; [ mornfall ];
|
maintainers = [ maintainers.mornfall ];
|
||||||
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -61,5 +61,7 @@ stdenv.mkDerivation rec {
|
||||||
license = http://www.sudo.ws/sudo/license.html;
|
license = http://www.sudo.ws/sudo/license.html;
|
||||||
|
|
||||||
maintainers = [ stdenv.lib.maintainers.eelco ];
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
||||||
|
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -33,5 +33,6 @@ stdenv.mkDerivation {
|
||||||
description = ''The classical Unix `at' job scheduling command'';
|
description = ''The classical Unix `at' job scheduling command'';
|
||||||
license = stdenv.lib.licenses.gpl2Plus;
|
license = stdenv.lib.licenses.gpl2Plus;
|
||||||
homepage = http://packages.qa.debian.org/at;
|
homepage = http://packages.qa.debian.org/at;
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,8 +20,9 @@ stdenv.mkDerivation {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
preInstall = "mkdir -p $out/bin $out/sbin $out/share/man/man1 $out/share/man/man5 $out/share/man/man8";
|
preInstall = "mkdir -p $out/bin $out/sbin $out/share/man/man1 $out/share/man/man5 $out/share/man/man8";
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Daemon for running commands at specific times (Vixie Cron)";
|
description = "Daemon for running commands at specific times (Vixie Cron)";
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,5 +10,6 @@ stdenv.mkDerivation {
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://ftp.gnu.org/gnu/which/;
|
homepage = http://ftp.gnu.org/gnu/which/;
|
||||||
|
platforms = stdenv.lib.platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -42,6 +42,7 @@ stdenv.mkDerivation {
|
||||||
homepage = http://www.tug.org/tetex/;
|
homepage = http://www.tug.org/tetex/;
|
||||||
matintainers = with maintainers; [ lovek323 ];
|
matintainers = with maintainers; [ lovek323 ];
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
hydraPlatforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -50,25 +50,15 @@ let
|
||||||
} // (mapTestOn ((packagePlatforms pkgs) // rec {
|
} // (mapTestOn ((packagePlatforms pkgs) // rec {
|
||||||
|
|
||||||
abcde = linux;
|
abcde = linux;
|
||||||
apacheHttpd = linux;
|
|
||||||
aspell = all;
|
aspell = all;
|
||||||
at = linux;
|
|
||||||
atlas = linux;
|
atlas = linux;
|
||||||
autoconf = all;
|
|
||||||
automake = all;
|
|
||||||
bash = all;
|
|
||||||
bashInteractive = all;
|
|
||||||
bazaar = linux; # first let sqlite3 work on darwin
|
bazaar = linux; # first let sqlite3 work on darwin
|
||||||
binutils = linux;
|
binutils = linux;
|
||||||
bind = linux;
|
bind = linux;
|
||||||
bvi = all;
|
bvi = all;
|
||||||
castle_combat = linux;
|
castle_combat = linux;
|
||||||
cdrkit = linux;
|
cdrkit = linux;
|
||||||
cksfv = all;
|
|
||||||
classpath = linux;
|
classpath = linux;
|
||||||
coreutils = all;
|
|
||||||
cron = linux;
|
|
||||||
cvs = linux;
|
|
||||||
ddrescue = linux;
|
ddrescue = linux;
|
||||||
dhcp = linux;
|
dhcp = linux;
|
||||||
dico = linux;
|
dico = linux;
|
||||||
|
@ -91,13 +81,11 @@ let
|
||||||
eprover = linux;
|
eprover = linux;
|
||||||
expect = linux;
|
expect = linux;
|
||||||
exult = linux;
|
exult = linux;
|
||||||
findutils = all;
|
|
||||||
flex = all;
|
flex = all;
|
||||||
fontforge = linux;
|
fontforge = linux;
|
||||||
gajim = linux;
|
gajim = linux;
|
||||||
gawk = all;
|
gawk = all;
|
||||||
gcc = linux;
|
gcc = linux;
|
||||||
gcc34 = linux;
|
|
||||||
gcc44 = linux;
|
gcc44 = linux;
|
||||||
gcj = linux;
|
gcj = linux;
|
||||||
ghostscript = linux;
|
ghostscript = linux;
|
||||||
|
@ -113,29 +101,16 @@ let
|
||||||
gnutls = linux;
|
gnutls = linux;
|
||||||
gogoclient = linux;
|
gogoclient = linux;
|
||||||
gphoto2 = linux;
|
gphoto2 = linux;
|
||||||
gpm = linux;
|
|
||||||
gpscorrelate = linux;
|
gpscorrelate = linux;
|
||||||
gqview = gtkSupported;
|
gqview = gtkSupported;
|
||||||
graphviz = all;
|
|
||||||
grub = linux;
|
|
||||||
gsl = linux;
|
gsl = linux;
|
||||||
guile = linux; # tests fail on Cygwin
|
guile = linux; # tests fail on Cygwin
|
||||||
gzip = all;
|
|
||||||
hddtemp = linux;
|
|
||||||
host = linux;
|
|
||||||
html-tidy = all;
|
html-tidy = all;
|
||||||
iana_etc = linux;
|
|
||||||
icewm = linux;
|
icewm = linux;
|
||||||
ifplugd = linux;
|
|
||||||
inkscape = linux;
|
inkscape = linux;
|
||||||
irssi = linux;
|
irssi = linux;
|
||||||
jfsutils = linux;
|
|
||||||
jnettop = linux;
|
jnettop = linux;
|
||||||
jwhois = linux;
|
|
||||||
kbd = linux;
|
|
||||||
keen4 = ["i686-linux"];
|
keen4 = ["i686-linux"];
|
||||||
# klibc = linux;
|
|
||||||
less = all;
|
|
||||||
lftp = all;
|
lftp = all;
|
||||||
libarchive = linux;
|
libarchive = linux;
|
||||||
libtool = all;
|
libtool = all;
|
||||||
|
@ -155,11 +130,9 @@ let
|
||||||
mercurial = unix;
|
mercurial = unix;
|
||||||
mercurialFull = linux;
|
mercurialFull = linux;
|
||||||
mesa = mesaPlatforms;
|
mesa = mesaPlatforms;
|
||||||
mingetty = linux;
|
|
||||||
mk = linux;
|
mk = linux;
|
||||||
mktemp = all;
|
mktemp = all;
|
||||||
mod_python = linux;
|
mod_python = linux;
|
||||||
module_init_tools = linux;
|
|
||||||
mupen64plus = linux;
|
mupen64plus = linux;
|
||||||
mutt = linux;
|
mutt = linux;
|
||||||
mysql = linux;
|
mysql = linux;
|
||||||
|
@ -171,17 +144,12 @@ let
|
||||||
nss_ldap = linux;
|
nss_ldap = linux;
|
||||||
nssmdns = linux;
|
nssmdns = linux;
|
||||||
ocaml = linux;
|
ocaml = linux;
|
||||||
pan = gtkSupported;
|
|
||||||
par2cmdline = all;
|
|
||||||
pciutils = linux;
|
pciutils = linux;
|
||||||
pdf2xml = all;
|
pdf2xml = all;
|
||||||
perl = all;
|
|
||||||
php = linux;
|
php = linux;
|
||||||
pinentry = linux;
|
pinentry = linux;
|
||||||
pltScheme = linux;
|
pltScheme = linux;
|
||||||
pmccabe = linux;
|
pmccabe = linux;
|
||||||
portmap = linux;
|
|
||||||
postgresql = all;
|
|
||||||
ppl = all;
|
ppl = all;
|
||||||
procps = linux;
|
procps = linux;
|
||||||
pthreadmanpages = linux;
|
pthreadmanpages = linux;
|
||||||
|
@ -192,13 +160,8 @@ let
|
||||||
qt3 = linux;
|
qt3 = linux;
|
||||||
quake3demo = linux;
|
quake3demo = linux;
|
||||||
reiserfsprogs = linux;
|
reiserfsprogs = linux;
|
||||||
rlwrap = all;
|
|
||||||
rogue = all;
|
|
||||||
rpm = linux;
|
|
||||||
rsync = linux;
|
|
||||||
rubber = allBut cygwin;
|
rubber = allBut cygwin;
|
||||||
rxvt_unicode = linux;
|
rxvt_unicode = linux;
|
||||||
screen = linux ++ darwin;
|
|
||||||
scrot = linux;
|
scrot = linux;
|
||||||
sdparm = linux;
|
sdparm = linux;
|
||||||
seccure = linux;
|
seccure = linux;
|
||||||
|
@ -209,32 +172,16 @@ let
|
||||||
ssmtp = linux;
|
ssmtp = linux;
|
||||||
stdenv = all;
|
stdenv = all;
|
||||||
stlport = linux;
|
stlport = linux;
|
||||||
su = linux;
|
|
||||||
sudo = linux;
|
|
||||||
superTuxKart = linux;
|
superTuxKart = linux;
|
||||||
swig = linux;
|
swig = linux;
|
||||||
sysklogd = linux;
|
|
||||||
syslinux = ["i686-linux"];
|
|
||||||
sysvinit = linux;
|
|
||||||
sysvtools = linux;
|
|
||||||
tahoelafs = linux;
|
tahoelafs = linux;
|
||||||
tangogps = linux;
|
tangogps = linux;
|
||||||
tcl = linux;
|
tcl = linux;
|
||||||
tcpdump = linux;
|
|
||||||
teeworlds = linux;
|
teeworlds = linux;
|
||||||
tetex = linux;
|
|
||||||
texLive = linux;
|
|
||||||
texLiveBeamer = linux;
|
|
||||||
texLiveExtra = linux;
|
|
||||||
tightvnc = linux;
|
tightvnc = linux;
|
||||||
time = linux;
|
time = linux;
|
||||||
tinycc = linux;
|
tinycc = linux;
|
||||||
uae = linux;
|
uae = linux;
|
||||||
unrar = linux;
|
|
||||||
upstart = linux;
|
|
||||||
usbutils = linux;
|
|
||||||
utillinux = linux;
|
|
||||||
utillinuxCurses = linux;
|
|
||||||
viking = linux;
|
viking = linux;
|
||||||
vice = linux;
|
vice = linux;
|
||||||
vim = linux;
|
vim = linux;
|
||||||
|
@ -244,7 +191,6 @@ let
|
||||||
vsftpd = linux;
|
vsftpd = linux;
|
||||||
w3m = all;
|
w3m = all;
|
||||||
weechat = linux;
|
weechat = linux;
|
||||||
which = all;
|
|
||||||
wicd = linux;
|
wicd = linux;
|
||||||
wine = ["i686-linux"];
|
wine = ["i686-linux"];
|
||||||
wirelesstools = linux;
|
wirelesstools = linux;
|
||||||
|
|
Loading…
Reference in New Issue