From c4b18a282f932f9789f363b73c368e394b76cf1a Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 9 Aug 2011 09:47:46 +0000 Subject: [PATCH] pkgs/development/libraries/haskell/cabal2nix: added missing regexPosix dependency Also, it's not necessary to propagate our build inputs; we build just executables. svn path=/nixpkgs/trunk/; revision=28417 --- pkgs/development/libraries/haskell/cabal2nix/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/haskell/cabal2nix/default.nix b/pkgs/development/libraries/haskell/cabal2nix/default.nix index d707fc0d302..ed94ede61bc 100644 --- a/pkgs/development/libraries/haskell/cabal2nix/default.nix +++ b/pkgs/development/libraries/haskell/cabal2nix/default.nix @@ -1,4 +1,4 @@ -{fetchgit,cabal,HTTP}: +{ fetchgit, cabal, HTTP, regexPosix }: cabal.mkDerivation (self : { pname = "cabal2nix"; @@ -9,7 +9,8 @@ cabal.mkDerivation (self : { rev = "aeba53e8da1250603b227ad2c705eee446cd3337"; }; - propagatedBuildInputs = [HTTP]; + extraBuildInputs = [HTTP regexPosix]; + meta = { homepage = "http://github.com/peti/cabal2nix"; description = "Convert Cabal files into Nix build instructions";