about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/pipes-parse/default.nix
blob: ef615ebb808beed00af17bf3e35414a6f3b9c191 (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.1";
  sha256 = "0f262p8mfcpvs3f3myy6bll9v61rfgrfdy2scdzf7vvx0h0lrpj7";
  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 ];
  };
})