update default.nix
This commit is contained in:
parent
2ee3d94d3e
commit
86d5adbc83
|
@ -10,7 +10,7 @@ let
|
|||
packageOverrides = super: let self = super.pkgs; in rec {
|
||||
haskell = super.haskell // {
|
||||
packageOverrides = self: super: {
|
||||
haskell-nix = super.callCabal2nix "timecode-generator" (gitIgnore [./.gitignore] ./.) {};
|
||||
timecode-generator = super.callCabal2nix "timecode-generator" (gitIgnore [./.gitignore] ./.) {};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
@ -19,7 +19,7 @@ let
|
|||
in {
|
||||
inherit pkgs;
|
||||
shell = compilerSet.shellFor {
|
||||
packages = p: [p.haskell-nix];
|
||||
packages = p: [p.timecode-generator];
|
||||
buildInputs = with pkgs; [
|
||||
compilerSet.cabal-install
|
||||
haskellPackages.tagsoup
|
||||
|
|
Loading…
Reference in a new issue