mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-30 01:23:03 +00:00
3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
19 lines
634 B
Nix
19 lines
634 B
Nix
{ cabal, blazeHtml, filepath, mtl, parsec, regexPcre }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "highlighting-kate";
|
|
version = "0.5.3.9";
|
|
sha256 = "158k38snqhgfjyzq82f8k1fkrpw0ld023wndzyzwwc6s933ap8hc";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [ blazeHtml filepath mtl parsec regexPcre ];
|
|
prePatch = "sed -i -e 's|regex-pcre-builtin|regex-pcre|' highlighting-kate.cabal";
|
|
meta = {
|
|
homepage = "http://github.com/jgm/highlighting-kate";
|
|
description = "Syntax highlighting";
|
|
license = "GPL";
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|