about summary refs log tree commit diff
path: root/pkgs/applications/misc/makeself
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2021-05-17 07:13:03 -0700
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-05-17 14:48:58 -0700
commit9fd18aaad21178ff6263d72b8b791369ccb1c54f (patch)
treeeadf1f152431a7b89d91106291b2e9eef4ff28b0 /pkgs/applications/misc/makeself
parentc007fb402681460a57a05f314f4c659d409d2f45 (diff)
makeself: fix tests
Diffstat (limited to 'pkgs/applications/misc/makeself')
-rw-r--r--pkgs/applications/misc/makeself/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/misc/makeself/default.nix b/pkgs/applications/misc/makeself/default.nix
index 205d526ed9419..e60e110087f4e 100644
--- a/pkgs/applications/misc/makeself/default.nix
+++ b/pkgs/applications/misc/makeself/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchFromGitHub, which }:
+{ lib, stdenv, fetchFromGitHub, which, zstd, pbzip2 }:
 
 stdenv.mkDerivation rec {
   version = "2.4.2";
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
 
   doCheck = true;
   checkTarget = "test";
-  checkInputs = [ which ];
+  checkInputs = [ which zstd pbzip2 ];
 
   installPhase = ''
     mkdir -p $out/{bin,share/{${pname}-${version},man/man1}}