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