59882abab2
svn path=/nixpkgs/trunk/; revision=28813
18 lines
452 B
Nix
Executable file
18 lines
452 B
Nix
Executable file
{ cabal }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "async";
|
|
version = "1.4";
|
|
sha256 = "1d24bcvmw687jcf75wgavlhfs55f0va02xhl4xdnj2lrlr19s5dl";
|
|
meta = {
|
|
homepage = "http://gitorious.org/async/";
|
|
description = "Asynchronous Computations";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|