about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/pipes-parse/default.nix
blob: 5f5dec485b62476bddf4eccbafcded9dd1985148 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ cabal, pipes, transformers }:

cabal.mkDerivation (self: {
  pname = "pipes-parse";
  version = "3.0.2";
  sha256 = "1d5lhh8knk0hmvd9wv2ihs5z9ybyvhd1n7qaazqkazqkyl14pd08";
  buildDepends = [ pipes transformers ];
  meta = {
    description = "Parsing infrastructure for the pipes ecosystem";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.ocharles ];
  };
})