about summary refs log tree commit diff
path: root/pkgs/development/tools/haskell/tar/0.3.2.0.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/tools/haskell/tar/0.3.2.0.nix')
-rw-r--r--pkgs/development/tools/haskell/tar/0.3.2.0.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/tools/haskell/tar/0.3.2.0.nix b/pkgs/development/tools/haskell/tar/0.3.2.0.nix
index 8bffe95fe890c..02db9131f8a19 100644
--- a/pkgs/development/tools/haskell/tar/0.3.2.0.nix
+++ b/pkgs/development/tools/haskell/tar/0.3.2.0.nix
@@ -1,9 +1,10 @@
-{ cabal }:
+{ cabal, Cabal, filepath }:
 
 cabal.mkDerivation (self: {
   pname = "tar";
   version = "0.3.2.0";
   sha256 = "0yplrfai8bwihyn18whi0jiz1qzll9hgbc37xcy2jkr28480jba9";
+  buildDepends = [ Cabal filepath ];
   meta = {
     description = "Reading, writing and manipulating \".tar\" archive files.";
     license = self.stdenv.lib.licenses.bsd3;