about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2021-03-26 09:55:32 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2021-04-03 17:06:10 +0200
commitcd7593f81590578d0a10725306aaea127f325141 (patch)
tree523c975fc97a3f1eb5a082760a1093129342a1e6
parent2a286fa36061456b00c3acfe402e8e9dc2e2435c (diff)
innoextract: drop python as dep
-rw-r--r--pkgs/tools/archivers/innoextract/default.nix9
1 files changed, 7 insertions, 2 deletions
diff --git a/pkgs/tools/archivers/innoextract/default.nix b/pkgs/tools/archivers/innoextract/default.nix
index 701c7429d6363..d1cb93093d3a4 100644
--- a/pkgs/tools/archivers/innoextract/default.nix
+++ b/pkgs/tools/archivers/innoextract/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchurl, cmake, makeWrapper, python
+{ lib, stdenv, fetchurl, cmake, makeWrapper
 , boost, lzma
 , withGog ? false, unar ? null }:
 
@@ -10,10 +10,15 @@ stdenv.mkDerivation rec {
     sha256 = "09l1z1nbl6ijqqwszdwch9mqr54qb7df0wp2sd77v17dq6gsci33";
   };
 
-  buildInputs = [ python lzma boost ];
+  buildInputs = [ lzma boost ];
+
+  # Python is reported as missing during the build, however
+  # including Python does not change the output.
 
   nativeBuildInputs = [ cmake makeWrapper ];
 
+  strictDeps = true;
+
   # we need unar to for multi-archive extraction
   postFixup = lib.optionalString withGog ''
     wrapProgram $out/bin/innoextract \