update default.nix

This commit is contained in:
horhik 2022-02-11 19:43:30 +03:00
parent 2ee3d94d3e
commit 86d5adbc83
1 changed files with 2 additions and 2 deletions

View File

@ -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