nixpkgs/pkgs/development/libraries/haskell/concurrent-extra/default.nix

22 lines
680 B
Nix

# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, async, HUnit, random, stm, testFramework
, testFrameworkHunit, unboundedDelays
}:
cabal.mkDerivation (self: {
pname = "concurrent-extra";
version = "0.7.0.9";
sha256 = "19bqm0brnbhhmp5nypi995p27mna7kd33xzw0kf7yx2w2p2kb1aw";
buildDepends = [ stm unboundedDelays ];
testDepends = [
async HUnit random stm testFramework testFrameworkHunit
unboundedDelays
];
meta = {
homepage = "https://github.com/basvandijk/concurrent-extra";
description = "Extra concurrency primitives";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})