2006-12-10 18:35:05 -08:00
|
|
|
{stdenv, fetchurl}:
|
2009-11-07 16:32:12 -08:00
|
|
|
|
2010-08-11 13:16:09 -07:00
|
|
|
# I could not build it in armv5tel-linux or the fuloon2f
|
2009-11-07 16:32:12 -08:00
|
|
|
assert stdenv.system != "armv5tel-linux";
|
2012-01-20 16:34:51 -08:00
|
|
|
assert stdenv.system != "mips64el-linux";
|
2006-12-10 18:35:05 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2009-02-18 03:40:32 -08:00
|
|
|
name = "libxcrypt-3.0.2";
|
2006-12-10 18:35:05 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
2009-02-18 03:40:32 -08:00
|
|
|
url = ftp://ftp.suse.com/pub/people/kukuk/libxcrypt/libxcrypt-3.0.2.tar.bz2;
|
|
|
|
sha256 = "15l2xvhi3r3b40x4665c101ikylh5xsbpw03gnszypfjgn1jkcii";
|
2006-12-10 18:35:05 -08:00
|
|
|
};
|
|
|
|
}
|