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

23 lines
689 B
Nix
Raw Normal View History

2013-04-30 13:10:54 +01:00
{ cabal, caseInsensitive, httpConduit, httpTypes, lens, liftedBase
, mtl, network, optparseApplicative, resourcet, transformers
, xmlConduit, xmlHamlet
2012-11-21 11:23:55 +00:00
}:
cabal.mkDerivation (self: {
pname = "DAV";
2013-05-02 11:35:18 +01:00
version = "0.4.1";
sha256 = "0bcrnlixrzvbdvw7ffv2xl2d0k0w71jf0i5ayf97ymxly8ii8s0c";
2012-11-21 11:23:55 +00:00
isLibrary = true;
isExecutable = true;
buildDepends = [
2013-04-30 13:10:54 +01:00
caseInsensitive httpConduit httpTypes lens liftedBase 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;
};
})