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

24 lines
759 B
Nix
Raw Normal View History

2013-12-16 16:36:18 +01:00
{ cabal, caseInsensitive, httpClient, httpClientTls, httpTypes
2013-12-17 11:27:43 +01:00
, lens, liftedBase, monadControl, mtl, network, optparseApplicative
, transformers, transformersBase, xmlConduit, xmlHamlet
2012-11-21 12:23:55 +01:00
}:
cabal.mkDerivation (self: {
pname = "DAV";
2013-12-17 11:27:43 +01:00
version = "0.6";
sha256 = "1lqc1w40mzj5gvpd3gc4qwgz3zrivwkz6ssa5592dsnwz81k1dxk";
2012-11-21 12:23:55 +01:00
isLibrary = true;
isExecutable = true;
buildDepends = [
2013-12-16 16:36:18 +01:00
caseInsensitive httpClient httpClientTls httpTypes lens liftedBase
2013-12-17 11:27:43 +01:00
monadControl mtl network optparseApplicative transformers
transformersBase xmlConduit xmlHamlet
2012-11-21 12:23:55 +01:00
];
meta = {
homepage = "http://floss.scru.org/hDAV";
description = "RFC 4918 WebDAV support";
license = self.stdenv.lib.licenses.gpl3;
platforms = self.ghc.meta.platforms;
};
})