1
0
Fork 0
mirror of https://github.com/malob/prefmanager.git synced 2024-12-14 11:57:49 +00:00
prefmanager/stack.nix

9 lines
233 B
Nix
Raw Normal View History

2023-06-28 23:24:31 +00:00
let
inherit (import ./constants.nix) name defaultGhcVersion;
inherit (import (import ./default.nix).inputs.nixpkgs { }) haskell;
in
haskell.lib.buildStackProject {
2023-06-28 23:24:31 +00:00
ghc = haskell.compiler.${defaultGhcVersion};
inherit name;
}