nixpkgs/pkgs/development/libraries/haskell/highlighting-kate/default.nix
Peter Simons da1f938ece jailbreak packages to support blaze-html 0.6.0.0
- hamlet
 - happstack-server
 - heist
 - highlighting-kate
 - xml-conduit
 - xmlhtml
 - yesod-auth
 - yesod-core
 - yesod-form
2013-02-18 11:10:40 +01:00

19 lines
654 B
Nix

{ cabal, blazeHtml, filepath, mtl, parsec, regexPcre }:
cabal.mkDerivation (self: {
pname = "highlighting-kate";
version = "0.5.3.5";
sha256 = "0m76h33igw77ndllgzkqgmygi7krc5vfjvizidsgris0zd1g2yv3";
isLibrary = true;
isExecutable = true;
buildDepends = [ blazeHtml filepath mtl parsec regexPcre ];
prePatch = "sed -i -e 's|regex-pcre-builtin|regex-pcre|' highlighting-kate.cabal";
jailbreak = true;
meta = {
homepage = "http://github.com/jgm/highlighting-kate";
description = "Syntax highlighting";
license = "GPL";
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})