2011-08-10 01:00:20 +02:00
|
|
|
{ cabal, binary, extensibleExceptions, network }:
|
2009-07-18 17:25:28 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2009-07-18 17:25:28 +02:00
|
|
|
pname = "hspread";
|
|
|
|
version = "0.3.3";
|
|
|
|
sha256 = "6e8a9ecc1a6b1cc767aa188e2f4c04b77b321fd14000cac8f71dd6a7b82afbfc";
|
2011-08-10 01:00:20 +02:00
|
|
|
buildDepends = [ binary extensibleExceptions network ];
|
2009-07-18 17:25:28 +02:00
|
|
|
meta = {
|
|
|
|
description = "A client library for the spread toolkit";
|
2011-08-10 01:00:20 +02:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2009-07-18 17:25:28 +02:00
|
|
|
};
|
|
|
|
})
|