6e56feca1d
- RepLib: updated to version 0.5.2 - http-enumerator: updated to version 0.7.3.1 - http-types: updated to version 0.6.10 - leksah-server: updated to version 0.12.0.5 - test-framework-quickcheck2: updated to version 0.2.12.1 - unbound: updated to version 0.4 - yesod: updated to version 0.10.2 svn path=/nixpkgs/trunk/; revision=33144
28 lines
849 B
Nix
28 lines
849 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
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|