-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathshell.nix
31 lines (29 loc) · 831 Bytes
/
shell.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
let
pkgs = import (builtins.fetchTarball {
url = "https://github.com/NixOS/nixpkgs/archive/21.11.tar.gz";
}) {};
# To update to a newer version of easy-purescript-nix, run:
# nix-prefetch-git https://github.com/justinwoo/easy-purescript-nix
#
# Then, copy the resulting rev and sha256 here.
pursPkgs = import (pkgs.fetchFromGitHub {
owner = "justinwoo";
repo = "easy-purescript-nix";
rev = "0ad5775c1e80cdd952527db2da969982e39ff592";
sha256 = "0x53ads5v8zqsk4r1mfpzf5913byifdpv5shnvxpgw634ifyj1kg";
}) {inherit pkgs;};
in
pkgs.stdenv.mkDerivation {
name = "halogen-formless";
buildInputs = with pursPkgs; [
purs
spago
psa
purs-tidy
purescript-language-server
pulp
pkgs.nodejs-16_x
pkgs.nodePackages.bower
pkgs.esbuild
];
}