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

12 lines
315 B
Nix
Raw Normal View History

2020-10-08 19:14:28 +00:00
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 {
2020-08-21 23:32:20 +00:00
buildInputs = [
2020-10-08 19:14:28 +00:00
pkgs.haskell.packages.${compiler-name}.haskell-language-server
pkgs.stack
pkgs.niv
2020-08-21 23:32:20 +00:00
];
}