summaryrefslogtreecommitdiff
path: root/pkgs/development/tools/asn2quickder/default.nix
diff options
context:
space:
mode:
authorNicolas B. Pierron <nicolas.b.pierron@gmail.com>2016-10-31 15:16:29 +0000
committerNicolas B. Pierron <nicolas.b.pierron@gmail.com>2016-10-31 15:16:29 +0000
commit59b5bbeae91109007e36a269a94cccc865dc5175 (patch)
tree1ee3d18aedace6d66034ea72fea571d20d8d0fee /pkgs/development/tools/asn2quickder/default.nix
parentDo not use old stdenv version in faust wrap functions. (-8 alias, -15 unpatch... (diff)
parentMerge pull request #19675 from edwtjo/dictd-touchup (diff)
downloadnixpkgs-gitlab.intr/security-updates.tar.gz
Merge branch master into security-updatesorigin/security-updatesgitlab.intr/security-updates
This merge mostly take the changes made to the master branch. Some conflict happen in top-level/default.nix due to a reformating of the code of which is computing the fix-point. This merge fixes these issues by adding the pkgsIndex argument, needed to re-evaluate the fix-point with another set of packages, and also re-add the second fix-point made to support the dependencies.
Diffstat (limited to 'pkgs/development/tools/asn2quickder/default.nix')
-rw-r--r--pkgs/development/tools/asn2quickder/default.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/pkgs/development/tools/asn2quickder/default.nix b/pkgs/development/tools/asn2quickder/default.nix
new file mode 100644
index 000000000000..69051714ab4c
--- /dev/null
+++ b/pkgs/development/tools/asn2quickder/default.nix
@@ -0,0 +1,36 @@
+{ stdenv, fetchFromGitHub, pythonPackages, makeWrapper }:
+
+stdenv.mkDerivation rec {
+ pname = "asn2quickder";
+ name = "${pname}-${version}";
+ version = "0.7-RC1";
+
+ src = fetchFromGitHub {
+ sha256 = "0ynajhbml28m4ipbj5mscjcv6g1a7frvxfimxh813rhgl0w3sgq8";
+ rev = "version-${version}";
+ owner = "vanrein";
+ repo = "${pname}";
+ };
+
+ propagatedBuildInputs = with pythonPackages; [ pyparsing makeWrapper ];
+
+ patchPhase = with pythonPackages; ''
+ substituteInPlace Makefile \
+ --replace '..' '..:$(DESTDIR)/${python.sitePackages}:${pythonPackages.pyparsing}/${python.sitePackages}' \
+ '';
+
+ installPhase = ''
+ mkdir -p $out/${pythonPackages.python.sitePackages}/
+ mkdir -p $out/bin $out/lib $out/sbin $out/man
+ make DESTDIR=$out PREFIX=/ all
+ make DESTDIR=$out PREFIX=/ install
+ '';
+
+ meta = with stdenv.lib; {
+ description = "An ASN.1 compiler with a backend for Quick DER";
+ homepage = https://github.com/vanrein/asn2quickder;
+ license = licenses.bsd3;
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ leenaars ];
+ };
+}