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

28 lines
874 B
Nix
Raw Normal View History

2014-02-25 17:09:26 +01:00
{ cabal, async, conduit, doctest, filepath, free, hspec
, hspecExpectationsLens, httpClient, httpConduit, httpTypes, lens
, monadControl, network, text, transformers, xmlConduit
}:
cabal.mkDerivation (self: {
pname = "libjenkins";
version = "0.4.2.0";
sha256 = "11013klk2gvcaf2d2gmi0bf3jg2m82li19szqlwb325kdjmdf546";
patches = [ ./new-conduit.patch ];
2014-02-25 17:09:26 +01:00
buildDepends = [
async conduit free httpClient httpConduit httpTypes lens
monadControl network text transformers xmlConduit
];
testDepends = [
async conduit doctest filepath free hspec hspecExpectationsLens
httpClient httpConduit httpTypes lens monadControl network text
transformers xmlConduit
];
doCheck = false;
jailbreak = true;
2014-02-25 17:09:26 +01:00
meta = {
description = "Jenkins API interface";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})