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

cabal.mkDerivation (self: {
  pname = "pipes-concurrency";
  version = "2.0.0";
  sha256 = "1f9l6qlaf8dyldzwaavj3k5akm74ycga5j173ypdna3pv0jbzfrk";
  buildDepends = [ pipes stm ];
  testDepends = [ async pipes stm ];
  meta = {
    description = "Concurrency for the pipes ecosystem";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.ocharles ];
  };
})