cabal2nix-2.8.2: test/golden-test-cases/github.nix.golden
{ mkDerivation, aeson, aeson-compat, base, base-compat
, base16-bytestring, binary, binary-orphans, byteable, bytestring
, containers, cryptohash, deepseq, deepseq-generics, exceptions
, fetchurl, file-embed, hashable, hspec, hspec-discover
, http-client, http-client-tls, http-link-header, http-types
, iso8601-time, mtl, network-uri, semigroups, text, time, tls
, transformers, transformers-compat, unordered-containers, vector
, vector-instances
}:
mkDerivation {
pname = "github";
version = "0.18";
src = fetchurl {
url = "http://example.org/";
sha256 = "abc";
};
libraryHaskellDepends = [
aeson aeson-compat base base-compat base16-bytestring binary
binary-orphans byteable bytestring containers cryptohash deepseq
deepseq-generics exceptions hashable http-client http-client-tls
http-link-header http-types iso8601-time mtl network-uri semigroups
text time tls transformers transformers-compat unordered-containers
vector vector-instances
];
testHaskellDepends = [
aeson-compat base base-compat bytestring file-embed hspec
unordered-containers vector
];
testToolDepends = [ hspec-discover ];
homepage = "https://github.com/phadej/github";
description = "Access to the GitHub API, v3";
license = stdenv.lib.licenses.bsd3;
}