mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 00:25:24 +00:00
0c842e7620
- cautious-file: updated to version 1.0.1 - hmatrix: updated to version 0.14.0.1 - random-fu: updated to version 0.2.2.0 - resourcet: added version 0.3.0 - sendfile: updated to version 0.7.6 - test-framework: added version 0.6 svn path=/nixpkgs/trunk/; revision=33354
18 lines
527 B
Nix
18 lines
527 B
Nix
{ cabal, liftedBase, monadControl, transformers, transformersBase
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "resourcet";
|
|
version = "0.3.0";
|
|
sha256 = "1r7yyw8jzh1wxy03mv22hg1c9ff9s4iv86kfgnmva8nwmcgnv0a1";
|
|
buildDepends = [
|
|
liftedBase monadControl transformers transformersBase
|
|
];
|
|
meta = {
|
|
homepage = "http://github.com/snoyberg/conduit";
|
|
description = "Deterministic allocation and freeing of scarce resources";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|