Skip to content

Commit

Permalink
cdrkit: fix 'dirsplit' tool by depending on perl
Browse files Browse the repository at this point in the history
Or else dirsplit uses "/usr/bin/perl" shebang.
  • Loading branch information
bjornfor committed Sep 17, 2017
1 parent 08b1bc9 commit a2a9b53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/tools/cd-dvd/cdrkit/default.nix
@@ -1,4 +1,4 @@
{stdenv, fetchurl, cmake, libcap, zlib, bzip2}:
{stdenv, fetchurl, cmake, libcap, zlib, bzip2, perl}:

stdenv.mkDerivation rec {
name = "cdrkit-1.1.11";
Expand All @@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
sha256 = "1nj7iv3xrq600i37na9a5idd718piiiqbs4zxvpjs66cdrsk1h6i";
};

buildInputs = [cmake libcap zlib bzip2];
buildInputs = [cmake libcap zlib bzip2 perl];

hardeningDisable = [ "format" ];

Expand Down

0 comments on commit a2a9b53

Please sign in to comment.