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

31 lines
712 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
, prelude
, base
, lib
, idris
2016-09-28 19:18:42 +00:00
}:
build-idris-package {
name = "wl-pprint-2016-09-28";
2015-11-27 16:03:04 +00:00
2015-11-28 10:53:50 +00:00
src = fetchFromGitHub {
owner = "shayan-najd";
repo = "wl-pprint";
2016-09-28 19:18:42 +00:00
rev = "4cc88a0865620a3b997863e4167d3b98e1a41b52";
sha256 = "1yxxh366k5njad75r0xci2q5c554cddvzgrwk43b0xn8rq0vm11x";
2015-11-27 16:03:04 +00:00
};
2016-09-28 19:18:42 +00:00
# The tests for this package fail. We should attempt to enable them when
# updating this package again.
doCheck = false;
2015-11-27 16:03:04 +00:00
propagatedBuildInputs = [ prelude base ];
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;
inherit (idris.meta) platforms;
};
}