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

27 lines
868 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, resourcet, text, transformers, xmlConduit
2014-02-25 17:09:26 +01:00
}:
cabal.mkDerivation (self: {
pname = "libjenkins";
version = "0.4.3.0";
sha256 = "18z1yaf1a1ncvflxzv96b35d44933yrmsmxv5dr87iyfry28qbnv";
2014-02-25 17:09:26 +01:00
buildDepends = [
async conduit free httpClient httpConduit httpTypes lens
monadControl network resourcet text transformers xmlConduit
2014-02-25 17:09:26 +01:00
];
testDepends = [
async conduit doctest filepath free hspec hspecExpectationsLens
httpClient httpConduit httpTypes lens monadControl network
resourcet text transformers xmlConduit
2014-02-25 17:09:26 +01:00
];
jailbreak = true;
doCheck = false;
2014-02-25 17:09:26 +01:00
meta = {
description = "Jenkins API interface";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})