10 lines
150 B
Nix
10 lines
150 B
Nix
|
with import <nixpkgs> {};
|
||
|
|
||
|
stdenv.mkDerivation {
|
||
|
name = "f-hs";
|
||
|
buildInputs = [
|
||
|
(pkgs.haskellPackages.ghcWithPackages (pkgs: [
|
||
|
]))
|
||
|
];
|
||
|
}
|