1
0
Fork 0

Use nightly nom

This commit is contained in:
Malte Brandy 2021-12-27 16:48:39 +01:00
parent 34a3e3b8b7
commit 14670f5918
No known key found for this signature in database
GPG key ID: 226A2D41EF5378C9
2 changed files with 11 additions and 1 deletions

View file

@ -1,4 +1,10 @@
{
"nix-output-monitor": {
"branch": "master",
"repo": "git@git:nix-output-monitor",
"rev": "71a64d043e6ca34551fa2e20bc46b81375713598",
"type": "git"
},
"haskell-dialog": {
"branch": "main",
"repo": "git@hera.m-0.eu:haskell-dialog",

View file

@ -4,9 +4,13 @@ let
in
{
inherit unstable;
inherit (unstable) cachix nix-output-monitor cabal2nix;
inherit (unstable) cachix cabal2nix;
nix = self.nix_2_4;
unstableHaskellPackages = unstable.haskellPackages;
unstableGhc = unstable.ghc;
home-assistant = unstable.home-assistant;
nix-output-monitor = unstable.nix-output-monitor.overrideAttrs (old: {
src = super.sources.nix-output-monitor;
buildInputs = old.buildInputs ++ [ super.haskellPackages.streamly ];
});
}