forked from mirrors/nixpkgs
haskell-leksah: updated build expression for recent versions of cabal.nix
svn path=/nixpkgs/trunk/; revision=28512
This commit is contained in:
parent
bde2d91fb3
commit
493e36669c
|
@ -1,15 +1,18 @@
|
|||
{cabal, binary, binaryShared, deepseq, glib, gtk,
|
||||
gtksourceview2, hslogger, leksahServer, ltk, mtl, network,
|
||||
parsec, processLeksah, regexBase, regexTDFA, strict, utf8String} :
|
||||
{ cabal, binary, binaryShared, deepseq, glib, gtk, gtksourceview2
|
||||
, hslogger, leksahServer, ltk, mtl, network, parsec, processLeksah
|
||||
, regexBase, regexTdfa, strict, time, utf8String
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self : {
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "leksah";
|
||||
version = "0.10.0.4";
|
||||
sha256 = "1g12w1kl63fxzz1c2x237yrqkaja9awiqyyipkdms5iql0ini7bw";
|
||||
propagatedBuildInputs = [
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
binary binaryShared deepseq glib gtk gtksourceview2 hslogger
|
||||
leksahServer ltk mtl network parsec processLeksah regexBase
|
||||
regexTDFA strict utf8String
|
||||
regexTdfa strict time utf8String
|
||||
];
|
||||
noHaddock = true;
|
||||
meta = {
|
||||
|
@ -17,6 +20,9 @@ cabal.mkDerivation (self : {
|
|||
description = "Haskell IDE written in Haskell";
|
||||
license = "GPL";
|
||||
platforms = self.stdenv.lib.platforms.linux;
|
||||
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
||||
maintainers = [
|
||||
self.stdenv.lib.maintainers.andres
|
||||
self.stdenv.lib.maintainers.simons
|
||||
];
|
||||
};
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue