My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/idris-modules/wl-pprint.nix

21 lines
496 B

{ build-idris-package
, fetchFromGitHub
, lib
}:
build-idris-package {
pname = "wl-pprint";
version = "2017-03-13";
src = fetchFromGitHub {
owner = "shayan-najd";
repo = "wl-pprint";
rev = "97590d1679b3db07bb430783988b4cba539e9947";
sha256 = "0ifp76cqg340jkkzanx69vg76qivv53vh1lzv9zkp5f49prkwl5d";
};
meta = {
description = "Wadler-Leijen pretty-printing library";
homepage = "https://github.com/shayan-najd/wl-pprint";
license = lib.licenses.bsd2;
};
}