nixpkgs/pkgs/development/libraries/botan/generic.nix

53 lines
1.4 KiB
Nix
Raw Normal View History

2014-10-31 17:31:19 +00:00
{ stdenv, fetchurl, python, bzip2, zlib, gmp, openssl, boost
# Passed by version specific builders
, baseVersion, revision, sha256
2015-03-08 18:55:17 +00:00
, extraConfigureFlags ? ""
, postPatch ? null
2017-04-09 04:49:55 +00:00
, darwin
2014-10-31 17:31:19 +00:00
, ...
}:
stdenv.mkDerivation rec {
name = "botan-${version}";
version = "${baseVersion}.${revision}";
src = fetchurl {
2015-01-06 15:47:02 +00:00
name = "Botan-${version}.tgz";
urls = [
"http://files.randombit.net/botan/v${baseVersion}/Botan-${version}.tgz"
"http://botan.randombit.net/releases/Botan-${version}.tgz"
];
2014-10-31 17:31:19 +00:00
inherit sha256;
};
inherit postPatch;
2014-10-31 17:31:19 +00:00
2017-04-09 04:49:55 +00:00
buildInputs = [ python bzip2 zlib gmp openssl boost ]
++ stdenv.lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security;
2014-10-31 17:31:19 +00:00
configurePhase = ''
2015-05-14 22:55:04 +00:00
python configure.py --prefix=$out --with-bzip2 --with-zlib ${if openssl != null then "--with-openssl" else ""} ${extraConfigureFlags}${if stdenv.cc.isClang then " --cc=clang" else "" }
2014-10-31 17:31:19 +00:00
'';
enableParallelBuilding = true;
2015-07-09 09:48:39 +00:00
preInstall = ''
if [ -d src/scripts ]; then
patchShebangs src/scripts
fi
'';
2014-10-31 17:31:19 +00:00
postInstall = ''
cd "$out"/lib/pkgconfig
ln -s botan-*.pc botan.pc || true
'';
meta = with stdenv.lib; {
2015-01-06 15:47:02 +00:00
inherit version;
2014-10-31 17:31:19 +00:00
description = "Cryptographic algorithms library";
maintainers = with maintainers; [ raskin ];
platforms = ["x86_64-linux" "i686-linux" "x86_64-darwin"];
2014-10-31 17:31:19 +00:00
license = licenses.bsd2;
};
passthru.updateInfo.downloadPage = "http://files.randombit.net/botan/";
}