nixpkgs/pkgs/development/libraries/haskell/BoundedChan/default.nix
2014-06-20 14:56:33 +02:00

13 lines
316 B
Nix

{ cabal }:
cabal.mkDerivation (self: {
pname = "BoundedChan";
version = "1.0.3.0";
sha256 = "0vf4mlw08n056g5256cf46m5xsijng5gvjx7ccm4r132gznyl72k";
meta = {
description = "Implementation of bounded channels";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})