quickder: 1.0-RC2 -> 1.2-6

This commit is contained in:
Michiel Leenaars 2018-02-12 17:37:18 +01:00
parent 4f53b77889
commit 1afb012df6

View File

@ -1,32 +1,51 @@
{ stdenv, fetchFromGitHub, fetchurl, hexio, python, which, asn2quickder, bash }: { stdenv, fetchFromGitHub, fetchurl, python2Packages, hexio
, which, cmake, bash, arpa2cm, git, asn2quickder, pkgconfig }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "quickder"; pname = "quickder";
name = "${pname}-${version}"; name = "${pname}-${version}";
version = "1.0-RC2"; version = "1.2-6";
src = fetchFromGitHub { src = fetchFromGitHub {
sha256 = "1nzk8x6qzpvli8bf74dc2qya63nlppqjrnkaxvjxr2dbqb8qcrqd"; sha256 = "00wifjydgmqw2i5vmr049visc3shjqccgzqynkmmhkjhs86ghzr6";
rev = "version-${version}"; rev = "version-${version}";
owner = "vanrein"; owner = "vanrein";
repo = "quick-der"; repo = "quick-der";
}; };
buildInputs = [ which asn2quickder bash ]; buildInputs = with python2Packages; [
arpa2cm
asn1ate
bash
cmake
git
hexio
pyparsing
python
six
which
asn1ate
asn2quickder
pkgconfig
];
patchPhase = '' patchPhase = ''
substituteInPlace Makefile \ substituteInPlace ./CMakeLists.txt \
--replace 'lib tool test rfc' 'lib test rfc' --replace "get_version_from_git" "set (Quick-DER_VERSION 1.2) #"
substituteInPlace ./rfc/Makefile \ substituteInPlace ./CMakeLists.txt \
--replace 'ASN2QUICKDER_CMD = ' 'ASN2QUICKDER_CMD = ${asn2quickder}/bin/asn2quickder #' --replace \$\{ARPA2CM_TOOLCHAIN_DIR} "$out/share/ARPA2CM/toolchain/"
''; '';
installFlags = "ASN2QUICKDER_DIR=${asn2quickder}/bin ASN2QUICKDER_CMD=${asn2quickder}/bin/asn2quickder"; cmakeFlags = [ "-DNO_TESTING=ON"
installPhase = '' "-DARPA2CM_TOOLCHAIN_DIR=$out/share/ARPA2CM/toolchain/"
mkdir -p $out/lib $out/man "-DCMAKE_EXPORT_NO_PACKAGE_REGISTRY=ON"
make DESTDIR=$out PREFIX=/ all "-DCMAKE_FIND_PACKAGE_NO_PACKAGE_REGISTRY=ON"
make DESTDIR=$out PREFIX=/ install "-DPACKAGE_NO_PACKAGE_REGISTRY=ON"
''; ];
preConfigure = ''
export PREFIX=$out
'';
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Quick (and Easy) DER, a Library for parsing ASN.1"; description = "Quick (and Easy) DER, a Library for parsing ASN.1";