1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/haskell/stm-chans/default.nix
2014-03-31 21:39:26 +02:00

15 lines
396 B
Nix

{ cabal, stm }:
cabal.mkDerivation (self: {
pname = "stm-chans";
version = "3.0.0.2";
sha256 = "1zsa092yjxsdq8nm2yqagdfpip3i3ff3xdwvys99ns7ridxbyynh";
buildDepends = [ stm ];
meta = {
homepage = "http://code.haskell.org/~wren/";
description = "Additional types of channels for STM";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})