4a1c721c01
what the new nix thinks the fuloong is. Anyone having the old nix should use a nixpkgs previous to this change to build the new nix. And then, with the new nix, he can use any newer nixpkgs revision. svn path=/nixpkgs/trunk/; revision=31751
15 lines
396 B
Nix
15 lines
396 B
Nix
{stdenv, fetchurl}:
|
|
|
|
# I could not build it in armv5tel-linux or the fuloon2f
|
|
assert stdenv.system != "armv5tel-linux";
|
|
assert stdenv.system != "mips64el-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";
|
|
};
|
|
}
|