easy-ps.nix 253 Bytes
Newer Older
1 2 3 4 5
{ pkgs ? import ./pinned.nix { } }:

import
  (
    pkgs.fetchFromGitHub {
6
      owner = "justinwoo";
7
      repo = "easy-purescript-nix";
8 9
      rev = "master";
      sha256 = "tESal32bcqqdZO+aKnBzc1GoL2mtnaDtj2y7ociCRGA=";
10 11 12 13
    }
  ) {
  inherit pkgs;
}