22 lines
738 B
Nix
22 lines
738 B
Nix
{ stdenv, fetchurl, libmcrypt, libmhash }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "2.6.8";
|
|
name = "mcrypt-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/mcrypt/MCrypt/${version}/${name}.tar.gz";
|
|
sha256 = "5145aa844e54cca89ddab6fb7dd9e5952811d8d787c4f4bf27eb261e6c182098";
|
|
};
|
|
|
|
buildInputs = [libmcrypt libmhash];
|
|
|
|
meta = {
|
|
description = "mcrypt, and the accompanying libmcrypt, are intended to be replacements for the old Unix crypt, except that they are under the GPL and support an ever-wider range of algorithms and modes.";
|
|
homepage = http://mcrypt.sourceforge.net;
|
|
license = "GPLv2";
|
|
platforms = stdenv.lib.platforms.all;
|
|
maintainers = [ stdenv.lib.maintainers.qknight ];
|
|
};
|
|
}
|