Skip to content

Commit 699d715

Browse files
committedJan 22, 2018
haskell-nix-paths: fix bogus dependencies
1 parent f716cdb commit 699d715

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎pkgs/development/haskell-modules/hackage-packages.nix

+3-3
Original file line numberDiff line numberDiff line change
@@ -145645,17 +145645,17 @@ self: {
145645145645
}) {};
145646145646

145647145647
"nix-paths" = callPackage
145648-
({ mkDerivation, base, nix, nix-hash, process }:
145648+
({ mkDerivation, base, nix, process }:
145649145649
mkDerivation {
145650145650
pname = "nix-paths";
145651145651
version = "1.0.1";
145652145652
sha256 = "1y09wl1ihxmc9p926g595f70pdcsx78r3q5n5rna23lpq8xicdxb";
145653145653
libraryHaskellDepends = [ base process ];
145654-
libraryToolDepends = [ nix nix-hash ];
145654+
libraryToolDepends = [ nix ];
145655145655
homepage = "https://github.com/peti/nix-paths";
145656145656
description = "Knowledge of Nix's installation directories";
145657145657
license = stdenv.lib.licenses.bsd3;
145658-
}) {inherit (pkgs) nix; nix-hash = null;};
145658+
}) {inherit (pkgs) nix;};
145659145659

145660145660
"nixfromnpm" = callPackage
145661145661
({ mkDerivation, aeson, ansi-terminal, base, bytestring

0 commit comments

Comments
 (0)
Please sign in to comment.