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

import
  (
    pkgs.fetchFromGitHub {
      owner = "justinwoo";
      repo = "easy-purescript-nix";
8
      rev = "7ebddd8613cf6736dbecef9fce4c32f2a104ef82";
9 10 11 12 13
      sha256 = "0lmkppidmhnayv0919990ifdd61f9d23dzjzr8amz7hjgc74yxs0";
    }
  ) {
  inherit pkgs;
}