summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/boomerang/default.nix
blob: 963448a56e73952f58a4530f0b3d5f6cabf15ac9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ cabal, mtl, text }:

cabal.mkDerivation (self: {
  pname = "boomerang";
  version = "1.3.3";
  sha256 = "1i44j3qyjkq69h65wfsrps5zp097i3nh9fwcb2f1spr8nznb5mff";
  buildDepends = [ mtl text ];
  meta = {
    description = "Library for invertible parsing and printing";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})