17 lines
337 B
Nix
17 lines
337 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libmcrypt-2.5.8";
|
|
|
|
src = fetchurl {
|
|
url = mirror://sourceforge/mcrypt/Libmcrypt/2.5.8/libmcrypt-2.5.8.tar.gz;
|
|
sha256 = "0gipgb939vy9m66d3k8il98rvvwczyaw2ixr8yn6icds9c3nrsz4";
|
|
};
|
|
|
|
buildInputs = [];
|
|
|
|
meta = {
|
|
homepage = http://mcrypt.sourceforge.net;
|
|
};
|
|
}
|