Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
27 lines
637 B
Nix
27 lines
637 B
Nix
{
|
|
mkDerivation,
|
|
ansi-terminal,
|
|
base,
|
|
fetchgit,
|
|
lib,
|
|
}:
|
|
mkDerivation {
|
|
pname = "ansi-wl-pprint";
|
|
version = "0.6.8.1";
|
|
src = fetchgit {
|
|
url = "https://github.com/ekmett/ansi-wl-pprint";
|
|
sha256 = "00pgxgkramz6y1bgdlm00rsh6gd6mdaqllh6riax2rc2sa35kip4";
|
|
rev = "d16e2f6896d76b87b72af7220c2e93ba15c53280";
|
|
fetchSubmodules = true;
|
|
};
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
libraryHaskellDepends = [
|
|
ansi-terminal
|
|
base
|
|
];
|
|
homepage = "http://github.com/ekmett/ansi-wl-pprint";
|
|
description = "The Wadler/Leijen Pretty Printer for colored ANSI terminal output";
|
|
license = lib.licenses.bsd3;
|
|
}
|