4490fe934e
- base64-bytestring: updated to version 0.1.2.0 - binary-shared: updated to version 0.8.2 - bson: updated to version 0.2.1 - leksah-server: updated to version 0.12.1.2 - leksah: updated to version 0.12.1.2 - MonadRandom: updated to version 0.1.7 - random-shuffle: updated to version 0.0.4 svn path=/nixpkgs/trunk/; revision=34569
25 lines
813 B
Nix
25 lines
813 B
Nix
{ cabal, attoparsec, attoparsecEnumerator, binary, binaryShared
|
|
, Cabal, deepseq, enumerator, filepath, haddock, hslogger, ltk
|
|
, network, parsec, processLeksah, strict, time, transformers
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "leksah-server";
|
|
version = "0.12.1.2";
|
|
sha256 = "0fzfyq1g1jrfl40nklgvkahlcv32m4gjbcyw52dky2qzc05b0g6m";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
attoparsec attoparsecEnumerator binary binaryShared Cabal deepseq
|
|
enumerator filepath haddock hslogger ltk network parsec
|
|
processLeksah strict 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 ];
|
|
};
|
|
})
|