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).
gstqt5
Vladimír Čunát 2020-08-15 14:05:28 +02:00
parent 6d0a85fe52
commit 753a2371d3
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA
1 changed files with 2 additions and 1 deletions

View File

@ -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}}