Created
March 19, 2021 20:00
-
-
Save thomashoneyman/a4f39a8495bb8ca6e18792d40b5ebf8e to your computer and use it in GitHub Desktop.
PureScript 0.13.8 Shell
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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