2013-04-12 21:04:56 +01:00
|
|
|
{ cabal, aeson, attoparsec, caseInsensitive, conduit, dataDefault
|
2013-12-02 10:32:28 +00:00
|
|
|
, failure, hashable, HTTP, httpConduit, httpTypes, network, text
|
|
|
|
, time, unorderedContainers, vector
|
2013-02-25 14:25:24 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "github";
|
2014-05-03 10:44:50 +01:00
|
|
|
version = "0.8";
|
|
|
|
sha256 = "0lzz7q2gjiq4z8yi1sb981m220qnwjizk9hqv09yfj5a4grqfchf";
|
2013-02-25 14:25:24 +00:00
|
|
|
buildDepends = [
|
2013-12-02 10:32:28 +00:00
|
|
|
aeson attoparsec caseInsensitive conduit dataDefault failure
|
|
|
|
hashable HTTP httpConduit httpTypes network text time
|
|
|
|
unorderedContainers vector
|
2013-02-25 14:25:24 +00:00
|
|
|
];
|
2013-09-06 22:06:43 +01:00
|
|
|
jailbreak = true;
|
2013-02-25 14:25:24 +00:00
|
|
|
meta = {
|
2013-04-12 21:04:56 +01:00
|
|
|
homepage = "https://github.com/fpco/github";
|
2013-02-25 14:25:24 +00:00
|
|
|
description = "Access to the Github API, v3";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|