2013-04-12 22:04:56 +02:00
|
|
|
{ cabal, aeson, attoparsec, caseInsensitive, conduit, dataDefault
|
2013-02-25 15:25:24 +01:00
|
|
|
, failure, HTTP, httpConduit, httpTypes, network, text, time
|
|
|
|
, unorderedContainers, vector
|
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "github";
|
2013-08-11 18:37:14 +02:00
|
|
|
version = "0.7.1";
|
|
|
|
sha256 = "0aipaamd7gn5f79f451v8ifjs5g8b40g9w4kvi1i62imsh0zhh90";
|
2013-02-25 15:25:24 +01:00
|
|
|
buildDepends = [
|
|
|
|
aeson attoparsec caseInsensitive conduit dataDefault failure HTTP
|
|
|
|
httpConduit httpTypes network text time unorderedContainers vector
|
|
|
|
];
|
2013-09-06 23:06:43 +02:00
|
|
|
jailbreak = true;
|
2013-02-25 15:25:24 +01:00
|
|
|
meta = {
|
2013-04-12 22:04:56 +02:00
|
|
|
homepage = "https://github.com/fpco/github";
|
2013-02-25 15:25:24 +01:00
|
|
|
description = "Access to the Github API, v3";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|