7d15ad90b9
- http-conduit: updated to version 1.4.1.8 - leksah-server: updated to version 0.12.1.0 - leksah: updated to version 0.12.1.0 - ltk: updated to version 0.12.1.0 - yaml: updated to version 0.7.0.3 svn path=/nixpkgs/trunk/; revision=34356
24 lines
798 B
Nix
24 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.1.0";
|
|
sha256 = "1jqrlz08ivr521a64cbdkixhgjra69qlfrasch7yac63dvf160i4";
|
|
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 ];
|
|
};
|
|
})
|