nixpkgs/pkgs/development/libraries/haskell/github/default.nix

23 lines
707 B
Nix
Raw Normal View History

{ cabal, aeson, attoparsec, caseInsensitive, conduit, dataDefault
, 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 = [
aeson attoparsec caseInsensitive conduit dataDefault failure
hashable HTTP httpConduit httpTypes network text time
unorderedContainers vector
2013-02-25 14:25:24 +00:00
];
jailbreak = true;
2013-02-25 14:25:24 +00:00
meta = {
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;
};
})