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

cabal.mkDerivation (self: {
  pname = "pipes-concurrency";
  version = "1.2.1";
  sha256 = "036cn6pafqpf2811iigablks3zk747bnzji9ykrgwhpja427vlbl";
  buildDepends = [ pipes stm ];
  meta = {
    description = "Concurrency for the pipes ecosystem";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})