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

35 lines
897 B
Nix
Raw Normal View History

2017-11-08 22:04:09 +00:00
{ stdenv, fetchurl, libtool }:
2014-10-15 01:05:51 +00:00
2017-11-08 22:04:09 +00:00
stdenv.mkDerivation rec {
name = "libtomcrypt-${version}";
version = "1.18.2";
2014-10-15 01:05:51 +00:00
src = fetchurl {
2017-11-08 22:04:09 +00:00
url = "https://github.com/libtom/libtomcrypt/releases/download/v${version}/crypt-${version}.tar.xz";
sha256 = "113vfrgapyv72lalhd3nkw7jnks8az0gcb5wqn9hj19nhcxlrbcn";
2014-10-15 01:05:51 +00:00
};
2017-11-08 22:04:09 +00:00
nativeBuildInputs = [ libtool ];
postPatch = ''
substituteInPlace makefile.shared --replace "LT:=glibtool" "LT:=libtool"
'';
2014-10-15 01:05:51 +00:00
preBuild = ''
2017-11-08 22:04:09 +00:00
makeFlagsArray=(PREFIX=$out \
2014-10-15 01:05:51 +00:00
INSTALL_GROUP=$(id -g) \
INSTALL_USER=$(id -u))
'';
makefile = "makefile.shared";
2017-11-08 22:04:09 +00:00
enableParallelBuilding = true;
meta = with stdenv.lib; {
2018-06-23 11:34:55 +00:00
homepage = https://www.libtom.net/LibTomCrypt/;
description = "A fairly comprehensive, modular and portable cryptographic toolkit";
2017-11-08 22:04:09 +00:00
license = with licenses; [ publicDomain wtfpl ];
platforms = platforms.linux;
2014-10-15 01:05:51 +00:00
};
}