Skip to content

Commit

Permalink
haskell-nix-paths: fix bogus dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
peti committed Jan 22, 2018
1 parent f716cdb commit 699d715
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkgs/development/haskell-modules/hackage-packages.nix
Expand Up @@ -145645,17 +145645,17 @@ self: {
}) {};

"nix-paths" = callPackage
({ mkDerivation, base, nix, nix-hash, process }:
({ mkDerivation, base, nix, process }:
mkDerivation {
pname = "nix-paths";
version = "1.0.1";
sha256 = "1y09wl1ihxmc9p926g595f70pdcsx78r3q5n5rna23lpq8xicdxb";
libraryHaskellDepends = [ base process ];
libraryToolDepends = [ nix nix-hash ];
libraryToolDepends = [ nix ];
homepage = "https://github.com/peti/nix-paths";
description = "Knowledge of Nix's installation directories";
license = stdenv.lib.licenses.bsd3;
}) {inherit (pkgs) nix; nix-hash = null;};
}) {inherit (pkgs) nix;};

"nixfromnpm" = callPackage
({ mkDerivation, aeson, ansi-terminal, base, bytestring
Expand Down

0 comments on commit 699d715

Please sign in to comment.