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 {
|
packageOverrides = super: let self = super.pkgs; in rec {
|
||||||
haskell = super.haskell // {
|
haskell = super.haskell // {
|
||||||
packageOverrides = self: super: {
|
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 {
|
in {
|
||||||
inherit pkgs;
|
inherit pkgs;
|
||||||
shell = compilerSet.shellFor {
|
shell = compilerSet.shellFor {
|
||||||
packages = p: [p.haskell-nix];
|
packages = p: [p.timecode-generator];
|
||||||
buildInputs = with pkgs; [
|
buildInputs = with pkgs; [
|
||||||
compilerSet.cabal-install
|
compilerSet.cabal-install
|
||||||
haskellPackages.tagsoup
|
haskellPackages.tagsoup
|
||||||
|
|
Loading…
Reference in a new issue