about summary refs log tree commit diff
path: root/pkgs/development/tools/asn2quickder
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2019-09-08 22:48:29 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2019-09-08 22:48:47 +0200
commitb5284a56d9b2c0bace0e7d9acdb2003b47fe581e (patch)
tree1c3eba56f0965fdc5b0b4c0de20cb8e58fc478fe /pkgs/development/tools/asn2quickder
parent5c2c505a2fc4ecc4ff7ef6c61c0280ac6d577fe3 (diff)
downloadnixlib-b5284a56d9b2c0bace0e7d9acdb2003b47fe581e.tar
nixlib-b5284a56d9b2c0bace0e7d9acdb2003b47fe581e.tar.gz
nixlib-b5284a56d9b2c0bace0e7d9acdb2003b47fe581e.tar.bz2
nixlib-b5284a56d9b2c0bace0e7d9acdb2003b47fe581e.tar.lz
nixlib-b5284a56d9b2c0bace0e7d9acdb2003b47fe581e.tar.xz
nixlib-b5284a56d9b2c0bace0e7d9acdb2003b47fe581e.tar.zst
nixlib-b5284a56d9b2c0bace0e7d9acdb2003b47fe581e.zip
asn2quickder: fix build
Diffstat (limited to 'pkgs/development/tools/asn2quickder')
-rw-r--r--pkgs/development/tools/asn2quickder/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/tools/asn2quickder/default.nix b/pkgs/development/tools/asn2quickder/default.nix
index e0b9aec9ee15..335a2238b91e 100644
--- a/pkgs/development/tools/asn2quickder/default.nix
+++ b/pkgs/development/tools/asn2quickder/default.nix
@@ -12,11 +12,13 @@ buildPythonApplication rec {
     repo = "quick-der";
   };
 
-  patchPhase = ''
+  postPatch = ''
     patchShebangs ./python/scripts/*
   '';
 
-  buildInputs = [ makeWrapper cmake ];
+  dontUseCmakeConfigure = true;
+
+  nativeBuildInputs = [ makeWrapper cmake ];
   checkInputs = [ pytestrunner pytest ];
 
   propagatedBuildInputs = [ pyparsing asn1ate six ];