1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-04 19:45:54 +00:00
nixpkgs/pkgs/development/libraries/haskell/boomerang/default.nix
2014-01-06 12:09:57 +01:00

14 lines
363 B
Nix

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