Created
August 26, 2018 07:56
-
-
Save srhb/a4c84222d3d090fe828707de7a393c4b to your computer and use it in GitHub Desktop.
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 | |
overlay = self: super: { | |
haskellPackages = with self.haskell.lib; super.haskellPackages.extend (selfHS: superHS: { | |
purescript = selfHS.callHackage "purescript" "0.12.0" {}; | |
}); | |
}; | |
in | |
{ nixpkgs ? builtins.fetchTarball | |
https://releases.nixos.org/nixos/18.03/nixos-18.03.133157.fde20125199/nixexprs.tar.xz | |
, pkgs ? import nixpkgs { overlays = [ overlay ]; } | |
}: | |
pkgs.haskellPackages.purescript |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment