Skip to content

Commit

Permalink
Update nixpkgs now that NixOS/nixpkgs#264934 is merged
Browse files Browse the repository at this point in the history
Not that daemons 0.3.0.0 is actually broken on ghc9.6 so we're building
with the default ghc again.
  • Loading branch information
voidus authored and gbataille committed Nov 18, 2023
1 parent bf26c6d commit 7385fcb
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 12 deletions.
13 changes: 6 additions & 7 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
description = "githud flake";

inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
nixpkgs.url = "github:NixOS/nixpkgs";
flake-utils.url = "github:numtide/flake-utils";
};

Expand All @@ -22,7 +22,7 @@
hfinal.callCabal2nix "githud" src { };
};
};
githud = final.haskell.lib.justStaticExecutables final.haskell.packages.ghc96.githud;
githud = final.haskell.lib.justStaticExecutables final.haskellPackages.githud;
};
in
{
Expand All @@ -38,9 +38,9 @@
packages.default = pkgs.githud;
devShells.default = pkgs.mkShell {
buildInputs = [
(pkgs.haskell.lib.justStaticExecutables pkgs.haskellPackages.ghcid)
(pkgs.cabal-install)
];
(pkgs.haskell.lib.justStaticExecutables pkgs.haskellPackages.ghcid)
(pkgs.cabal-install)
];
inputsFrom = [ self.packages.${system}.default.env ];
};
});
Expand Down

0 comments on commit 7385fcb

Please sign in to comment.