mirror of
https://github.com/malob/prefmanager.git
synced 2024-12-14 11:57:49 +00:00
8 lines
233 B
Nix
8 lines
233 B
Nix
let
|
|
inherit (import ./constants.nix) name defaultGhcVersion;
|
|
inherit (import (import ./default.nix).inputs.nixpkgs { }) haskell;
|
|
in
|
|
haskell.lib.buildStackProject {
|
|
ghc = haskell.compiler.${defaultGhcVersion};
|
|
inherit name;
|
|
}
|