about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/compilers/elm/packages/ansi-wl-pprint.nix
blob: 392ca5ab31b1b8a37a0f2d8377f43e65d3a0e13b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ 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;
}