nixpkgs/pkgs/development/libraries/libxcrypt/default.nix
Lluís Batlle i Rossell 006c7c854a Adding a patch for libxcrypt that could make it build for gcc 4.6. Untested; I
only looked at the hydra log.


svn path=/nixpkgs/branches/stdenv-updates/; revision=28961
2011-09-01 17:38:55 +00:00

18 lines
427 B
Nix

{stdenv, fetchurl}:
# I could not build it in armv5tel-linux or the fuloon2f
assert stdenv.system != "armv5tel-linux";
assert stdenv.system != "mips64-linux";
stdenv.mkDerivation {
name = "libxcrypt-3.0.2";
src = fetchurl {
url = ftp://ftp.suse.com/pub/people/kukuk/libxcrypt/libxcrypt-3.0.2.tar.bz2;
sha256 = "15l2xvhi3r3b40x4665c101ikylh5xsbpw03gnszypfjgn1jkcii";
};
patches = [ ./gcc46.patch ];
}