summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/mpppc/default.nix
blob: d5cb3e9769f4041b51e681b1f627f05bce4326aa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ cabal, ansiTerminal, split, text }:

cabal.mkDerivation (self: {
  pname = "mpppc";
  version = "0.1.3";
  sha256 = "1zcilskpslpqyrbwpabwbry4p3kpcfca94wchh9dkq9g8pg8laxi";
  buildDepends = [ ansiTerminal split text ];
  jailbreak = true;
  meta = {
    description = "Multi-dimensional parametric pretty-printer with color";
    license = "GPL";
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})