Merge pull request #75532 from 0x4A6F/master-xandikos
xandikos: init at 0.1.0
This commit is contained in:
commit
68dfdc2f60
31
pkgs/servers/xandikos/default.nix
Normal file
31
pkgs/servers/xandikos/default.nix
Normal 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" ];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -14560,6 +14560,8 @@ in
|
|||||||
|
|
||||||
x265 = callPackage ../development/libraries/x265 { };
|
x265 = callPackage ../development/libraries/x265 { };
|
||||||
|
|
||||||
|
xandikos = callPackage ../servers/xandikos { };
|
||||||
|
|
||||||
inherit (callPackages ../development/libraries/xapian { })
|
inherit (callPackages ../development/libraries/xapian { })
|
||||||
xapian_1_4;
|
xapian_1_4;
|
||||||
xapian = xapian_1_4;
|
xapian = xapian_1_4;
|
||||||
|
Loading…
Reference in New Issue
Block a user