quickder: init at 1.0-RC1

This commit is contained in:
Michiel Leenaars 2016-08-10 22:43:13 +02:00
parent 651beb0592
commit 08011fa2af
2 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,38 @@
{ stdenv, fetchFromGitHub, fetchurl, hexio, python, which, asn2quickder, bash }:
stdenv.mkDerivation rec {
pname = "quickder";
name = "${pname}-${version}";
version = "1.0-RC1";
src = fetchFromGitHub {
sha256 = "05gw5dqkw3l8kwwm0044zpxhcp7sxicx9wxbfyr49c91403p870w";
rev = "version-${version}";
owner = "vanrein";
repo = "quick-der";
};
buildInputs = [ which asn2quickder bash ];
patchPhase = ''
substituteInPlace Makefile \
--replace 'lib tool test rfc' 'lib test rfc'
substituteInPlace ./rfc/Makefile \
--replace 'ASN2QUICKDER_CMD = ' 'ASN2QUICKDER_CMD = ${asn2quickder}/bin/asn2quickder #'
'';
installFlags = "ASN2QUICKDER_DIR=${asn2quickder}/bin ASN2QUICKDER_CMD=${asn2quickder}/bin/asn2quickder";
installPhase = ''
mkdir -p $out/lib $out/man
make DESTDIR=$out PREFIX=/ all
make DESTDIR=$out PREFIX=/ install
'';
meta = with stdenv.lib; {
description = "Quick (and Easy) DER, a Library for parsing ASN.1";
homepage = https://github.com/vanrein/quick-der;
license = licenses.bsd2;
platforms = platforms.linux;
maintainers = with maintainers; [ leenaars ];
};
}

View File

@ -8884,6 +8884,8 @@ in
quesoglc = callPackage ../development/libraries/quesoglc { };
quickder = callPackage ../development/libraries/quickder {};
quicksynergy = callPackage ../applications/misc/quicksynergy { };
qwt = callPackage ../development/libraries/qwt {};