2006-12-10 18:35:05 -08:00
|
|
|
{stdenv, fetchurl}:
|
2009-11-07 16:32:12 -08:00
|
|
|
|
|
|
|
# I could not build it in armv5tel-linux
|
|
|
|
assert stdenv.system != "armv5tel-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
|
|
|
};
|
|
|
|
}
|