5e7c2d6cef
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
27 lines
895 B
Nix
27 lines
895 B
Nix
{ lib, stdenv, fetchurl, darwin, disablePosixThreads ? false }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libmcrypt";
|
|
version = "2.5.8";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/mcrypt/Libmcrypt/${version}/libmcrypt-${version}.tar.gz";
|
|
sha256 = "0gipgb939vy9m66d3k8il98rvvwczyaw2ixr8yn6icds9c3nrsz4";
|
|
};
|
|
|
|
buildInputs = lib.optional stdenv.isDarwin darwin.cctools;
|
|
|
|
configureFlags = lib.optionals disablePosixThreads [ "--disable-posix-threads" ]
|
|
++ lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
|
# AC_FUNC_MALLOC is broken on cross builds.
|
|
"ac_cv_func_malloc_0_nonnull=yes"
|
|
"ac_cv_func_realloc_0_nonnull=yes"
|
|
];
|
|
|
|
meta = {
|
|
description = "Replacement for the old crypt() package and crypt(1) command, with extensions";
|
|
homepage = "https://mcrypt.sourceforge.net";
|
|
license = "GPL";
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|