update-nix-fetchgit-0.2.8: default.nix
{ pkgs ? import ./nixpkgs.nix, compiler ? null, forShell ? pkgs.lib.inNixShell
}:
with pkgs;
let
hp =
if compiler == null then haskellPackages else haskell.packages.${compiler};
in hp.developPackage {
name = "update-nix-fetchgit";
root = nix-gitignore.gitignoreSource [ ] ./.;
overrides = self: super: { };
modifier = drv: haskell.lib.addBuildTools drv [ git nix nix-prefetch-git ];
returnShellEnv = forShell;
}