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

cabal.mkDerivation (self: {
  pname = "mtlparse";
  version = "0.1.2";
  sha256 = "cd85d985e4eff842b1c053a2ff507094a20995c5757acc06ea34ff07d9edd142";
  buildDepends = [ mtl ];
  meta = {
    homepage = "http://homepage3.nifty.com/salamander/second/projects/mtlparse/";
    description = "parse library using mtl package";
    license = "LGPL";
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})