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

# I could not build it in armv5tel-linux or the fuloon2f
assert stdenv.system != "armv5tel-linux";
assert stdenv.system != "ict_loongson-2_v0.3_fpu_v0.1-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";
  };
}