nixpkgs/pkgs/development/idris-modules/wl-pprint.nix

22 lines
493 B
Nix
Raw Normal View History

2015-11-27 18:17:17 +00:00
{ build-idris-package
2015-11-28 10:53:50 +00:00
, fetchFromGitHub
2015-11-27 18:17:17 +00:00
, lib
2016-09-28 19:18:42 +00:00
}:
build-idris-package {
2018-03-09 08:57:18 +00:00
name = "wl-pprint";
version = "2017-03-13";
2015-11-27 16:03:04 +00:00
2015-11-28 10:53:50 +00:00
src = fetchFromGitHub {
owner = "shayan-najd";
repo = "wl-pprint";
rev = "97590d1679b3db07bb430783988b4cba539e9947";
sha256 = "0ifp76cqg340jkkzanx69vg76qivv53vh1lzv9zkp5f49prkwl5d";
2015-11-27 16:03:04 +00:00
};
2015-11-27 18:17:17 +00:00
meta = {
description = "Wadler-Leijen pretty-printing library";
homepage = https://github.com/shayan-najd/wl-pprint;
license = lib.licenses.bsd2;
};
}