haskell-DAV: add version 0.2

This commit is contained in:
Peter Simons
2012-11-21 12:23:55 +01:00
parent 4ea0f76ffc
commit 5407af5c14
2 changed files with 24 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
{ cabal, caseInsensitive, cmdargs, httpConduit, httpTypes, lens
, liftedBase, mtl, network, resourcet, transformers, xmlConduit
, xmlHamlet
}:
cabal.mkDerivation (self: {
pname = "DAV";
version = "0.2";
sha256 = "0g9b72ia4h85ykbng6103wc8f218fj9fdvm1896yx999vr95kxw4";
isLibrary = true;
isExecutable = true;
buildDepends = [
caseInsensitive cmdargs httpConduit httpTypes lens liftedBase mtl
network resourcet transformers xmlConduit xmlHamlet
];
meta = {
homepage = "http://floss.scru.org/hDAV";
description = "RFC 4918 WebDAV support";
license = self.stdenv.lib.licenses.gpl3;
platforms = self.ghc.meta.platforms;
};
})