Skip to content

Commit 369f574

Browse files
committed
Add some nix tooling for easier dev
1 parent c409968 commit 369f574

File tree

5 files changed

+111
-0
lines changed

5 files changed

+111
-0
lines changed

.envrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
use flake

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@
1111
/.spago/
1212
/output-pulp/
1313
.psc-*
14+
/.direnv

flake.lock

+43
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
description = "Provide an environment for working in this repo";
3+
4+
# to handle mac and linux
5+
inputs.flake-utils.url = "github:numtide/flake-utils";
6+
7+
# we want to use a consistent nixpkgs across developers.
8+
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
9+
10+
outputs = all@{ self, nixpkgs, flake-utils, ... }:
11+
flake-utils.lib.eachDefaultSystem (system:
12+
let
13+
pkgs = import nixpkgs {
14+
inherit system;
15+
};
16+
packages =
17+
let
18+
# everything we want available in our development environment that isn't managed by
19+
# npm, spago
20+
# we do not differentiate between libraries needed for building and tools at the moment.
21+
sharedPackages = with pkgs; [
22+
nodejs-16_x
23+
];
24+
in
25+
sharedPackages;
26+
in {
27+
# produce our actual shell
28+
devShell = pkgs.mkShell rec {
29+
# make our packages available
30+
buildInputs = packages;
31+
};
32+
}
33+
);
34+
}

tools/publish-shell.nix

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Universal shell for PureScript repos
2+
{ pkgs ? import (builtins.fetchGit {
3+
# https://github.com/NixOS/nixpkgs/releases/tag/21.11
4+
url = "https://github.com/nixos/nixpkgs/";
5+
ref = "refs/tags/21.11";
6+
rev = "a7ecde854aee5c4c7cd6177f54a99d2c1ff28a31";
7+
}) {}
8+
}:
9+
let
10+
easy-ps-src = builtins.fetchGit {
11+
url = "https://github.com/justinwoo/easy-purescript-nix.git";
12+
ref = "master";
13+
rev = "0ad5775c1e80cdd952527db2da969982e39ff592";
14+
};
15+
easy-ps = import easy-ps-src { inherit pkgs; };
16+
in
17+
pkgs.mkShell {
18+
nativeBuildInputs = [
19+
easy-ps.purs-0_15_0
20+
easy-ps.spago
21+
easy-ps.pulp-16_0_0-0
22+
easy-ps.psc-package
23+
easy-ps.purs-tidy
24+
pkgs.nodejs-16_x
25+
pkgs.nodePackages.bower
26+
];
27+
LC_ALL = "C.UTF-8"; # https://github.com/purescript/spago/issues/507
28+
# https://github.com/purescript/spago#install-autocompletions-for-bash
29+
shellHook = ''
30+
source <(spago --bash-completion-script `which spago`)
31+
'';
32+
}

0 commit comments

Comments
 (0)