Skip to content

Instantly share code, notes, and snippets.

@thomashoneyman
Created March 19, 2021 20:00
Show Gist options
  • Save thomashoneyman/a4f39a8495bb8ca6e18792d40b5ebf8e to your computer and use it in GitHub Desktop.
Save thomashoneyman/a4f39a8495bb8ca6e18792d40b5ebf8e to your computer and use it in GitHub Desktop.
PureScript 0.13.8 Shell
let
pkgs = import (builtins.fetchTarball {
url = "https://github.com/NixOS/nixpkgs/archive/20.09.tar.gz";
}) {};
# 2021-03-14 nix-prefetch-git https://github.com/justinwoo/easy-purescript-nix
pursPkgs = import (pkgs.fetchFromGitHub {
owner = "justinwoo";
repo = "easy-purescript-nix";
rev = "e8a1ffafafcdf2e81adba419693eb35f3ee422f8";
sha256 = "0bk32wckk82f1j5i5gva63f3b3jl8swc941c33bqc3pfg5cgkyyf";
}) { inherit pkgs; };
in pkgs.stdenv.mkDerivation {
name = "halogen-hooks";
buildInputs = with pursPkgs; [
pursPkgs.purs-0_13_8
pursPkgs.spago
pkgs.nodejs-14_x
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment