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