2016-05-31 09:18:37 +01:00
|
|
|
{ stdenv, fetchurl, darwin, disablePosixThreads ? false }:
|
2013-02-12 18:33:39 +00:00
|
|
|
|
|
|
|
with stdenv.lib;
|
2012-12-01 20:28:32 +00:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2012-12-01 20:28:32 +00:00
|
|
|
name = "libmcrypt-2.5.8";
|
2021-01-19 21:20:11 +00:00
|
|
|
|
2012-12-01 20:28:32 +00:00
|
|
|
src = fetchurl {
|
2020-04-01 02:11:51 +01:00
|
|
|
url = "mirror://sourceforge/mcrypt/Libmcrypt/2.5.8/libmcrypt-2.5.8.tar.gz";
|
2012-12-01 20:28:32 +00:00
|
|
|
sha256 = "0gipgb939vy9m66d3k8il98rvvwczyaw2ixr8yn6icds9c3nrsz4";
|
|
|
|
};
|
|
|
|
|
2016-05-31 09:18:37 +01:00
|
|
|
buildInputs = optional stdenv.isDarwin darwin.cctools;
|
2012-12-01 20:28:32 +00:00
|
|
|
|
2013-02-12 18:33:39 +00:00
|
|
|
configureFlags = optional disablePosixThreads
|
|
|
|
[ "--disable-posix-threads" ];
|
|
|
|
|
2012-12-01 20:28:32 +00:00
|
|
|
meta = {
|
2013-10-06 10:49:53 +01:00
|
|
|
description = "Replacement for the old crypt() package and crypt(1) command, with extensions";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://mcrypt.sourceforge.net";
|
2013-02-12 18:33:39 +00:00
|
|
|
license = "GPL";
|
2016-05-31 09:18:37 +01:00
|
|
|
platforms = platforms.all;
|
2012-12-01 20:28:32 +00:00
|
|
|
};
|
|
|
|
}
|