summary refs log tree commit diff
path: root/pkgs/development/libraries/libxcrypt/default.nix
blob: 536d30992bbdb247329442a01037890a07bee695 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{stdenv, fetchurl}:

# I could not build it in armv5tel-linux or the fuloon2f
assert !stdenv.isArm;
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";
  };

  patches = [ ./gcc46.patch ];

}