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

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