mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
42 lines
877 B
Nix
42 lines
877 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, python3Packages
|
|
, installShellFiles
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "xandikos";
|
|
version = "0.2.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jelmer";
|
|
repo = "xandikos";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-/pr8ZqgYk24CdJNAETCDF4ZtufXkVEu1Zw25PcPEo7M=";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
aiohttp
|
|
dulwich
|
|
defusedxml
|
|
icalendar
|
|
jinja2
|
|
multidict
|
|
prometheus_client
|
|
];
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
postInstall = ''
|
|
installManPage xandikos.1
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Lightweight CalDAV/CardDAV server";
|
|
homepage = "https://github.com/jelmer/xandikos";
|
|
license = licenses.gpl3Plus;
|
|
changelog = "https://github.com/jelmer/xandikos/blob/v${version}/NEWS";
|
|
maintainers = with maintainers; [ _0x4A6F ];
|
|
};
|
|
}
|