packages feed

cabal2nix-2.8.2: test/golden-test-cases/librato.nix.golden

{ mkDerivation, aeson, attoparsec, base, bytestring, either
, fetchurl, http-client, http-conduit, http-types, mtl, resourcet
, text, unordered-containers, uri-templater, vector
}:
mkDerivation {
  pname = "librato";
  version = "0.2.0.1";
  src = fetchurl {
    url = "http://example.org/";
    sha256 = "abc";
  };
  libraryHaskellDepends = [
    aeson attoparsec base bytestring either http-client http-conduit
    http-types mtl resourcet text unordered-containers uri-templater
    vector
  ];
  homepage = "https://github.com/SaneTracker/librato";
  description = "Bindings to the Librato API";
  license = stdenv.lib.licenses.mit;
}