nixpkgs/pkgs/development/libraries/haskell/leksah/leksah-server.nix
Peter Simons 4490fe934e Updated Haskell packages.
- 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
2012-06-20 10:56:24 +00:00

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 ];
};
})