summary refs log tree commit diff
path: root/pkgs/applications/misc
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2020-08-15 14:05:28 +0200
committerVladimír Čunát <v@cunat.cz>2020-08-15 14:05:28 +0200
commit753a2371d3bcdaba342d50c551d1606b1d12266f (patch)
tree2560ca10050dafae451b0a542e872d281c56ea4b /pkgs/applications/misc
parent6d0a85fe528e020eb7d8eb78d33ee87055c01c74 (diff)
downloadnixpkgs-753a2371d3bcdaba342d50c551d1606b1d12266f.tar
nixpkgs-753a2371d3bcdaba342d50c551d1606b1d12266f.tar.gz
nixpkgs-753a2371d3bcdaba342d50c551d1606b1d12266f.tar.bz2
nixpkgs-753a2371d3bcdaba342d50c551d1606b1d12266f.tar.lz
nixpkgs-753a2371d3bcdaba342d50c551d1606b1d12266f.tar.xz
nixpkgs-753a2371d3bcdaba342d50c551d1606b1d12266f.tar.zst
nixpkgs-753a2371d3bcdaba342d50c551d1606b1d12266f.zip
makeself: add which to inputs
I've been unable to reproduce the problem that repeatedly manifests
on Hydra, but this change is cheap.  Close #89343 (thanks).
Diffstat (limited to 'pkgs/applications/misc')
-rw-r--r--pkgs/applications/misc/makeself/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/misc/makeself/default.nix b/pkgs/applications/misc/makeself/default.nix
index 6fcd86596fb..993596aabe1 100644
--- a/pkgs/applications/misc/makeself/default.nix
+++ b/pkgs/applications/misc/makeself/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub }:
+{ stdenv, fetchFromGitHub, which }:
 
 stdenv.mkDerivation rec {
   version = "2.4.2";
@@ -16,6 +16,7 @@ stdenv.mkDerivation rec {
 
   doCheck = true;
   checkTarget = "test";
+  checkInputs = [ which ];
 
   installPhase = ''
     mkdir -p $out/{bin,share/{${pname}-${version},man/man1}}