packages feed

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

{ mkDerivation, base, blaze-html, containers, Diff, directory
, fetchurl, filepath, mtl, parsec, process, regex-pcre-builtin
, utf8-string
}:
mkDerivation {
  pname = "highlighting-kate";
  version = "0.6.4";
  src = fetchurl {
    url = "http://example.org/";
    sha256 = "abc";
  };
  isLibrary = true;
  isExecutable = true;
  libraryHaskellDepends = [
    base blaze-html containers mtl parsec regex-pcre-builtin
    utf8-string
  ];
  executableHaskellDepends = [ base blaze-html containers filepath ];
  testHaskellDepends = [
    base blaze-html containers Diff directory filepath process
  ];
  homepage = "http://github.com/jgm/highlighting-kate";
  description = "Syntax highlighting";
  license = "GPL";
}