packages feed

cabal2nix-2.9: test/golden-test-cases/texmath.nix.golden

{ mkDerivation, base, bytestring, containers, directory, fetchurl
, filepath, mtl, pandoc-types, parsec, process, split, syb
, temporary, text, utf8-string, xml
}:
mkDerivation {
  pname = "texmath";
  version = "0.10.1";
  src = fetchurl {
    url = "http://example.org/";
    sha256 = "abc";
  };
  isLibrary = true;
  isExecutable = true;
  libraryHaskellDepends = [
    base containers mtl pandoc-types parsec syb xml
  ];
  testHaskellDepends = [
    base bytestring directory filepath process split temporary text
    utf8-string xml
  ];
  homepage = "http://github.com/jgm/texmath";
  description = "Conversion between formats used to represent mathematics";
  license = "GPL";
}