4b27d28701
This comes from: svn diff ^/nixpkgs/trunk/@18255 ^/nixpkgs/branches/stdenv-updates/ > diff patch -p0 < diff and then adding into svn all files new from the patch. trunk@18255 comes from the last time I updated stdenv-updates from trunk. svn path=/nixpkgs/stdenv-updates2/; revision=18272
14 lines
338 B
Nix
14 lines
338 B
Nix
{stdenv, fetchurl}:
|
|
|
|
# I could not build it in armv5tel-linux
|
|
assert stdenv.system != "armv5tel-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";
|
|
};
|
|
}
|