29 lines
576 B
Nix
Raw Normal View History

2015-11-27 13:17:17 -05:00
{ build-idris-package
2015-11-28 05:53:50 -05:00
, fetchFromGitHub
2015-11-27 13:17:17 -05:00
, prelude
, base
, lib
, idris
}: build-idris-package {
2015-11-27 11:03:04 -05:00
name = "wl-pprint";
2015-11-28 05:53:50 -05:00
src = fetchFromGitHub {
owner = "shayan-najd";
repo = "wl-pprint";
2015-11-27 11:03:04 -05:00
rev = "120f654b0b9838b57e10b163d3562d959439fb07";
2015-11-28 05:53:50 -05:00
sha256 = "1yymdl251zla6hv9rcg06x73gbp6xb0n6f6a02bsy5fqfmrfngcl";
2015-11-27 11:03:04 -05:00
};
propagatedBuildInputs = [ prelude base ];
2015-11-27 13:17:17 -05:00
meta = {
description = "Wadler-Leijen pretty-printing library";
homepage = https://github.com/shayan-najd/wl-pprint;
license = lib.licenses.bsd2;
inherit (idris.meta) platforms;
};
}