880dcc2c64
By now, it happened twice that a commit broke GHC and thus all Haskell packages we have in Nixpkgs. On such an occasion, I receive well in excess of 3000 notification e-mails from Hydra, and then I receive another 3000 e-mails after the bug has been fixed. Under these circumstances, subscribing to these notifications makes no sense for me. svn path=/nixpkgs/trunk/; revision=33392
25 lines
798 B
Nix
25 lines
798 B
Nix
{ cabal, attoparsec, attoparsecEnumerator, binary, binaryShared
|
|
, Cabal, deepseq, enumerator, filepath, haddock, hslogger, ltk
|
|
, network, parsec, processLeksah, time, transformers
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "leksah-server";
|
|
version = "0.12.0.5";
|
|
sha256 = "0kr5xsnjl0brbdysw1rhd7a1gy3i0kn8rq2c5grc2m734ankil6z";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
attoparsec attoparsecEnumerator binary binaryShared Cabal deepseq
|
|
enumerator filepath haddock hslogger ltk network parsec
|
|
processLeksah time transformers
|
|
];
|
|
meta = {
|
|
homepage = "http://leksah.org";
|
|
description = "Metadata collection for leksah";
|
|
license = "GPL";
|
|
platforms = self.stdenv.lib.platforms.linux;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|