mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
23 lines
707 B
Nix
23 lines
707 B
Nix
{ cabal, aeson, attoparsec, caseInsensitive, conduit, dataDefault
|
|
, failure, hashable, HTTP, httpConduit, httpTypes, network, text
|
|
, time, unorderedContainers, vector
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "github";
|
|
version = "0.8";
|
|
sha256 = "0lzz7q2gjiq4z8yi1sb981m220qnwjizk9hqv09yfj5a4grqfchf";
|
|
buildDepends = [
|
|
aeson attoparsec caseInsensitive conduit dataDefault failure
|
|
hashable HTTP httpConduit httpTypes network text time
|
|
unorderedContainers vector
|
|
];
|
|
jailbreak = true;
|
|
meta = {
|
|
homepage = "https://github.com/fpco/github";
|
|
description = "Access to the Github API, v3";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|