mirror of
https://github.com/malob/prefmanager.git
synced 2024-12-14 11:57:49 +00:00
11 lines
315 B
Nix
11 lines
315 B
Nix
let
|
|
pkgs = import (import ./nix/sources.nix).nixpkgs {};
|
|
hsPkgs = import ./default.nix {};
|
|
compiler-name = hsPkgs.prefmanager.project.pkg-set.config.compiler.nix-name;
|
|
in hsPkgs.shellFor {
|
|
buildInputs = [
|
|
pkgs.haskell.packages.${compiler-name}.haskell-language-server
|
|
pkgs.stack
|
|
pkgs.niv
|
|
];
|
|
}
|