nixpkgs/pkgs/development/libraries/libtomcrypt/default.nix
Ryan Mulligan fed3895eaf libtomcrypt: 1.18.0 -> 1.18.1
Semi-automatic update. These checks were performed:

- built on NixOS
- found 1.18.1 with grep in /nix/store/iv3xsmfxm8i14mkkcc5cqqr7ixpq02i5-libtomcrypt-1.18.1
- found 1.18.1 in filename of file in /nix/store/iv3xsmfxm8i14mkkcc5cqqr7ixpq02i5-libtomcrypt-1.18.1
2018-02-26 21:11:51 -08:00

35 lines
896 B
Nix

{ stdenv, fetchurl, libtool }:
stdenv.mkDerivation rec {
name = "libtomcrypt-${version}";
version = "1.18.1";
src = fetchurl {
url = "https://github.com/libtom/libtomcrypt/releases/download/v${version}/crypt-${version}.tar.xz";
sha256 = "053z0jzyvf6c9929phlh2p0ybx289s34g7nii5hnjigxzcs3mhap";
};
nativeBuildInputs = [ libtool ];
postPatch = ''
substituteInPlace makefile.shared --replace "LT:=glibtool" "LT:=libtool"
'';
preBuild = ''
makeFlagsArray=(PREFIX=$out \
INSTALL_GROUP=$(id -g) \
INSTALL_USER=$(id -u))
'';
makefile = "makefile.shared";
enableParallelBuilding = true;
meta = with stdenv.lib; {
homepage = http://www.libtom.net/LibTomCrypt/;
description = "A fairly comprehensive, modular and portable cryptographic toolkit";
license = with licenses; [ publicDomain wtfpl ];
platforms = platforms.linux;
};
}