depot/pkgs/development/idris-modules/wl-pprint.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

21 lines
496 B
Nix

{ 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;
};
}