3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
15 lines
482 B
Nix
15 lines
482 B
Nix
{ cabal, binary, extensibleExceptions, network }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "hspread";
|
|
version = "0.3.3";
|
|
sha256 = "6e8a9ecc1a6b1cc767aa188e2f4c04b77b321fd14000cac8f71dd6a7b82afbfc";
|
|
buildDepends = [ binary extensibleExceptions network ];
|
|
meta = {
|
|
description = "A client library for the spread toolkit";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|