Skip to content

Commit

Permalink
Fix use buildPackages git for cleanGit
Browse files Browse the repository at this point in the history
  • Loading branch information
hamishmack committed Sep 15, 2019
1 parent 1cf8638 commit 033ce18
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion overlays/haskell.nix
Expand Up @@ -56,7 +56,11 @@ self: super: {
stackage = import stackageSrc;

# Utility functions for working with the component builder.
haskellLib = let hl = import ../lib { inherit (self) lib runCommand git; haskellLib = hl; }; in hl;
haskellLib = let hl = import ../lib {
inherit (self) lib runCommand;
git = self.buildPackages.git;
haskellLib = hl;
}; in hl;

# Create a Haskell package set based on a cabal build plan (plan-to-nix)
# and Nix expressions representing cabal packages (cabal-to-nix).
Expand Down

0 comments on commit 033ce18

Please sign in to comment.