haskell-DAV: update to version 1.0.3

This commit is contained in:
Peter Simons 2014-10-14 23:11:10 +02:00
parent fc964fa924
commit be66d82790

View File

@ -2,26 +2,26 @@
{ cabal, caseInsensitive, dataDefault, either, errors, exceptions { cabal, caseInsensitive, dataDefault, either, errors, exceptions
, httpClient, httpClientTls, httpTypes, lens, mtl, network , httpClient, httpClientTls, httpTypes, lens, mtl, network
, optparseApplicative, transformers, transformersBase, utf8String , networkUri, optparseApplicative, transformers, transformersBase
, xmlConduit, xmlHamlet , utf8String, xmlConduit, xmlHamlet
}: }:
cabal.mkDerivation (self: { cabal.mkDerivation (self: {
pname = "DAV"; pname = "DAV";
version = "1.0.2"; version = "1.0.3";
sha256 = "0xbiq3q8w1cjnh71sfnincir8igvwig734r8schbsps993p2d24b"; sha256 = "1wrs3rdk4sarzi4w1pma8h751mjw5x1l8c6w30wv7fg0rmk2cayd";
isLibrary = true; isLibrary = true;
isExecutable = true; isExecutable = true;
buildDepends = [ buildDepends = [
caseInsensitive dataDefault either errors exceptions httpClient caseInsensitive dataDefault either errors exceptions httpClient
httpClientTls httpTypes lens mtl network optparseApplicative httpClientTls httpTypes lens mtl network networkUri
transformers transformersBase utf8String xmlConduit xmlHamlet optparseApplicative transformers transformersBase utf8String
xmlConduit xmlHamlet
]; ];
meta = { meta = {
homepage = "http://floss.scru.org/hDAV"; homepage = "http://floss.scru.org/hDAV";
description = "RFC 4918 WebDAV support"; description = "RFC 4918 WebDAV support";
license = self.stdenv.lib.licenses.gpl3; license = self.stdenv.lib.licenses.gpl3;
platforms = self.ghc.meta.platforms; platforms = self.ghc.meta.platforms;
broken = true;
}; };
}) })