d0e60c7130
The expression needs more attention before it can be built on platforms other than Linux: at `haskellPackages.leksahServer' [system = "i686-darwin"]: assertion failed at `/nix/store/jbcbv6lf44wiy5afsk99sv3vzd1zhg9f-nixpkgs-r28407/pkgs/os-specific/linux/kernel-headers/2.6.32.nix:3:1' at `haskellPackages.leksah' [system = "i686-darwin"]: assertion failed at `/nix/store/jbcbv6lf44wiy5afsk99sv3vzd1zhg9f-nixpkgs-r28407/pkgs/os-specific/linux/kernel-headers/2.6.32.nix:3:1' svn path=/nixpkgs/trunk/; revision=28412
23 lines
669 B
Nix
23 lines
669 B
Nix
{cabal, binary, binaryShared, deepseq, ghc, haddock, hslogger, ltk,
|
|
mtl, network, parsec, processLeksah} :
|
|
|
|
cabal.mkDerivation (self : {
|
|
pname = "leksah-server";
|
|
version = "0.10.0.4";
|
|
sha256 = "0g523dkiaclk5ym16vzqiabh7mwksjqp0kbx17a899k5gzfwfjp6";
|
|
propagatedBuildInputs = [
|
|
binary binaryShared deepseq ghc haddock hslogger ltk mtl network
|
|
parsec processLeksah
|
|
];
|
|
meta = {
|
|
homepage = "http://leksah.org";
|
|
description = "Metadata collection for leksah";
|
|
license = "GPL";
|
|
platforms = self.stdenv.lib.platforms.linux;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.simons
|
|
self.stdenv.lib.maintainers.andres
|
|
];
|
|
};
|
|
})
|