mirror of
https://github.com/malob/prefmanager.git
synced 2024-12-14 11:57:49 +00:00
11 lines
188 B
Nix
11 lines
188 B
Nix
{ pkgs ? import (import ./nix/sources.nix).nixpkgs {} }:
|
|
|
|
with pkgs;
|
|
mkShell {
|
|
buildInputs = [
|
|
haskell.packages.ghc884.haskell-language-server
|
|
cabal2nix
|
|
stack
|
|
niv
|
|
];
|
|
}
|