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

cabal.mkDerivation (self: {
  pname = "pipes-parse";
  version = "2.0.0";
  sha256 = "092y0a4lvll451gnbz6ddrqgh22bd69wi00c0zd8s0hmf2f53y0s";
  buildDepends = [ free 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 ];
  };
})