packages feed

cabal2nix-2.9.3: test/golden-test-cases/highlighting-kate.nix.golden

{ mkDerivation, base, blaze-html, bytestring, containers, Diff
, directory, filepath, mtl, parsec, pcre-light, process, stdenv
, utf8-string
}:
mkDerivation {
  pname = "highlighting-kate";
  version = "0.6.4";
  sha256 = "deadbeef";
  configureFlags = [ "-fpcre-light" ];
  isLibrary = true;
  isExecutable = true;
  libraryHaskellDepends = [
    base blaze-html bytestring containers mtl parsec pcre-light
    utf8-string
  ];
  testHaskellDepends = [
    base blaze-html containers Diff directory filepath process
  ];
  homepage = "http://github.com/jgm/highlighting-kate";
  description = "Syntax highlighting";
  license = "GPL";
}