nixpkgs/pkgs/development/libraries/haskell/remote/default.nix
Peter Simons 3b2254a3af Remove myself from the meta.maintainer field of most Haskell packages.
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
2013-05-11 00:36:59 +02:00

19 lines
504 B
Nix

{ cabal, binary, filepath, mtl, network, pureMD5, stm, syb, time
, utf8String
}:
cabal.mkDerivation (self: {
pname = "remote";
version = "0.1.1";
sha256 = "14awzhpc21pp4iq53vz4ib81ygxsnlnfppv723zy77z6jja08gf0";
buildDepends = [
binary filepath mtl network pureMD5 stm syb time utf8String
];
meta = {
description = "Cloud Haskell";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})