nixpkgs-suyu/pkgs/development/libraries/libtomcrypt/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
1.2 KiB
Nix
Raw Normal View History

2021-05-16 15:28:26 +02:00
{ lib, stdenv, fetchurl, fetchpatch, libtool, libtommath }:
2014-10-15 03:05:51 +02:00
2017-11-08 23:04:09 +01:00
stdenv.mkDerivation rec {
pname = "libtomcrypt";
version = "1.18.2";
2014-10-15 03:05:51 +02:00
src = fetchurl {
2017-11-08 23:04:09 +01:00
url = "https://github.com/libtom/libtomcrypt/releases/download/v${version}/crypt-${version}.tar.xz";
sha256 = "113vfrgapyv72lalhd3nkw7jnks8az0gcb5wqn9hj19nhcxlrbcn";
2014-10-15 03:05:51 +02:00
};
patches = [
(fetchpatch {
name = "CVE-2019-17362.patch";
url = "https://github.com/libtom/libtomcrypt/pull/508/commits/25c26a3b7a9ad8192ccc923e15cf62bf0108ef94.patch";
sha256 = "1bwsj0pwffxw648wd713z3xcyrbxc2z646psrzp38ys564fjh5zf";
})
];
2021-05-16 15:28:26 +02:00
nativeBuildInputs = [ libtool libtommath ];
2017-11-08 23:04:09 +01:00
postPatch = ''
substituteInPlace makefile.shared --replace "LT:=glibtool" "LT:=libtool"
'';
2014-10-15 03:05:51 +02:00
preBuild = ''
2021-05-16 15:28:26 +02:00
makeFlagsArray+=(PREFIX=$out \
CFLAGS="-DUSE_LTM -DLTM_DESC -DLTC_PTHREAD" \
EXTRALIBS=\"-ltommath\" \
2014-10-15 03:05:51 +02:00
INSTALL_GROUP=$(id -g) \
INSTALL_USER=$(id -u))
'';
makefile = "makefile.shared";
2017-11-08 23:04:09 +01:00
enableParallelBuilding = true;
meta = with lib; {
homepage = "https://www.libtom.net/LibTomCrypt/";
description = "A fairly comprehensive, modular and portable cryptographic toolkit";
2017-11-08 23:04:09 +01:00
license = with licenses; [ publicDomain wtfpl ];
platforms = platforms.linux;
2014-10-15 03:05:51 +02:00
};
}