mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 07:31:20 +00:00
14 lines
343 B
Nix
14 lines
343 B
Nix
|
{cabal}:
|
||
|
|
||
|
cabal.mkDerivation (self : {
|
||
|
pname = "async";
|
||
|
version = "1.2";
|
||
|
sha256 = "a5963d36fc1ba142d18920f967190b25cf80f700d863372b6d33ad5257a1773a";
|
||
|
propagatedBuildInputs = [];
|
||
|
meta = {
|
||
|
homepage = "http://gitorious.org/async/";
|
||
|
description = "Asynchronous Computations";
|
||
|
license = self.stdenv.lib.licenses.bsd3;
|
||
|
};
|
||
|
})
|