Merge pull request #75532 from 0x4A6F/master-xandikos

xandikos: init at 0.1.0
This commit is contained in:
Maximilian Bosch 2019-12-21 01:42:49 +01:00 committed by GitHub
commit 68dfdc2f60
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ stdenv
, fetchFromGitHub
, python3Packages
}:
python3Packages.buildPythonApplication rec {
pname = "xandikos";
version = "0.1.0";
src = fetchFromGitHub {
owner = "jelmer";
repo = "xandikos";
rev = "v${version}";
sha256 = "12r8fciid2qpqf054584ywwh49yddyhhpkpcm6jihzyr5y2r4kn1";
};
propagatedBuildInputs = with python3Packages; [
dulwich
defusedxml
icalendar
jinja2
];
meta = with stdenv.lib; {
description = "Lightweight CalDAV/CardDAV server";
homepage = "https://github.com/jelmer/xandikos";
license = licenses.gpl3Plus;
maintainers = [ maintainers."0x4A6F" ];
};
}

View file

@ -14560,6 +14560,8 @@ in
x265 = callPackage ../development/libraries/x265 { };
xandikos = callPackage ../servers/xandikos { };
inherit (callPackages ../development/libraries/xapian { })
xapian_1_4;
xapian = xapian_1_4;