1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/libraries/haskell/DAV/default.nix

24 lines
720 B
Nix
Raw Normal View History

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