forked from haskell-github/github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.nix
26 lines (26 loc) · 1018 Bytes
/
default.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ mkDerivation, aeson, attoparsec, base, base16-bytestring
, byteable, bytestring, case-insensitive, conduit, containers
, cryptohash, data-default, failure, hashable, hspec, HTTP
, http-conduit, http-types, network, old-locale, stdenv, text, time
, unordered-containers, vector
}:
mkDerivation {
pname = "github";
version = "0.14.0";
src = ./.;
buildDepends = [
aeson attoparsec base base16-bytestring byteable bytestring
case-insensitive conduit containers cryptohash data-default failure
hashable HTTP http-conduit http-types network old-locale text time
unordered-containers vector
];
testDepends = [
aeson attoparsec base base16-bytestring byteable bytestring
case-insensitive conduit containers cryptohash data-default failure
hashable hspec HTTP http-conduit http-types network old-locale text
time unordered-containers vector
];
homepage = "https://github.com/fpco/github";
description = "Access to the Github API, v3";
license = stdenv.lib.licenses.bsd3;
}