mirror of
https://github.com/ocharles/weeder.git
synced 2024-11-23 06:54:10 +03:00
25 lines
925 B
Nix
25 lines
925 B
Nix
{ mkDerivation, ansi-wl-pprint, base, base-compat, bytestring
|
|
, containers, deepseq, doctest, gauge, mtl, pgp-wordlist
|
|
, QuickCheck, quickcheck-instances, random, stdenv, tasty
|
|
, tasty-hunit, tasty-quickcheck, text, transformers
|
|
}:
|
|
mkDerivation {
|
|
pname = "prettyprinter";
|
|
version = "1.6.1";
|
|
sha256 = "3f9765764db7b55db8fb29b92ad26a02f08364e5947a89e2e1aa6d8a6087d781";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
libraryHaskellDepends = [ base text ];
|
|
testHaskellDepends = [
|
|
base bytestring doctest pgp-wordlist QuickCheck
|
|
quickcheck-instances tasty tasty-hunit tasty-quickcheck text
|
|
];
|
|
benchmarkHaskellDepends = [
|
|
ansi-wl-pprint base base-compat containers deepseq gauge mtl
|
|
QuickCheck random text transformers
|
|
];
|
|
homepage = "http://github.com/quchen/prettyprinter";
|
|
description = "A modern, easy to use, well-documented, extensible pretty-printer";
|
|
license = stdenv.lib.licenses.bsd2;
|
|
}
|