libmcrypt: Fixed missing nmedit on darwin (#15775)
This commit is contained in:
parent
65ccda5b96
commit
45f9fd8c51
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, disablePosixThreads ? false }:
|
{ stdenv, fetchurl, darwin, disablePosixThreads ? false }:
|
||||||
|
|
||||||
with stdenv.lib;
|
with stdenv.lib;
|
||||||
|
|
||||||
@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "0gipgb939vy9m66d3k8il98rvvwczyaw2ixr8yn6icds9c3nrsz4";
|
sha256 = "0gipgb939vy9m66d3k8il98rvvwczyaw2ixr8yn6icds9c3nrsz4";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [];
|
buildInputs = optional stdenv.isDarwin darwin.cctools;
|
||||||
|
|
||||||
configureFlags = optional disablePosixThreads
|
configureFlags = optional disablePosixThreads
|
||||||
[ "--disable-posix-threads" ];
|
[ "--disable-posix-threads" ];
|
||||||
@ -19,5 +19,6 @@ stdenv.mkDerivation rec {
|
|||||||
description = "Replacement for the old crypt() package and crypt(1) command, with extensions";
|
description = "Replacement for the old crypt() package and crypt(1) command, with extensions";
|
||||||
homepage = http://mcrypt.sourceforge.net;
|
homepage = http://mcrypt.sourceforge.net;
|
||||||
license = "GPL";
|
license = "GPL";
|
||||||
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user