1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 05:00:16 +00:00

* Fix broken meta attributes.

svn path=/nixpkgs/trunk/; revision=17773
This commit is contained in:
Eelco Dolstra 2009-10-13 09:39:27 +00:00
parent 64f76f4643
commit 257ffc8e73
5 changed files with 12 additions and 10 deletions

View file

@ -75,9 +75,11 @@ stdenv.mkDerivation ( {
opensslSupport = openssl != null;
tkSupport = (tk != null) && (tcl != null);
libPrefix = "python2.5";
};
meta = {
# List of supported platforms.
# - On Darwin, `python.exe' fails with "Bus Error".
platforms = stdenv.lib.platforms.allBut "i686-darwin";
} ;
};
} // (if stdenv.system == "i686-darwin" then { NIX_CFLAGS_COMPILE = "-msse2" ; patches = [./search-path.patch ./nolongdouble.patch]; } else {} ) )

View file

@ -29,6 +29,6 @@ stdenv.mkDerivation rec {
homepage = http://zziplib.sourceforge.net/;
maintainers = [ stdenv.lib.maintainers.ludo ];
platforms = python.passthru.platforms;
platforms = python.meta.platforms;
};
}

View file

@ -21,6 +21,6 @@ stdenv.mkDerivation {
homepage = http://www.tazenda.demon.co.uk/phil/net-tools/;
description = "A set of tools for controlling the network subsystem in Linux";
license = "GPLv2+";
platforms = [ stdenv.lib.platforms.linux ];
platforms = stdenv.lib.platforms.linux;
};
}

View file

@ -49,7 +49,7 @@ stdenv.mkDerivation rec {
meta = {
description = "A relational filesystem on top of FUSE";
inherit src;
maintainers = [args.lib.maintainers.raskin];
platforms = args.lib.platforms.linux;
maintainers = [args.stdenv.lib.maintainers.raskin];
platforms = args.stdenv.lib.platforms.linux;
};
}

View file

@ -79,7 +79,7 @@ rec {
license = "MIT";
maintainers = [ stdenv.lib.maintainers.ludo ];
platforms = python.passthru.platforms;
platforms = python.meta.platforms;
};
});
@ -174,7 +174,7 @@ rec {
license = "revised-BSD";
maintainers = [ stdenv.lib.maintainers.ludo ];
platforms = python.passthru.platforms;
platforms = python.meta.platforms;
};
});
@ -218,7 +218,7 @@ rec {
license = "GPLv2+";
maintainers = [ stdenv.lib.maintainers.ludo ];
platforms = python.passthru.platforms;
platforms = python.meta.platforms;
};
});
@ -272,7 +272,7 @@ rec {
license = "revised BSD";
maintainers = [ stdenv.lib.maintainers.ludo ];
platforms = python.passthru.platforms;
platforms = python.meta.platforms;
};
});
@ -395,7 +395,7 @@ rec {
license = "MIT";
maintainers = [ stdenv.lib.maintainers.ludo ];
platforms = python.passthru.platforms;
platforms = python.meta.platforms;
};
};