3
0
Fork 0
forked from mirrors/nixpkgs

khard: init at 0.4.0

This commit is contained in:
Matthias Beyer 2015-01-30 17:02:05 +01:00
parent 2bcd1dff75
commit 95578b07f7
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ stdenv, fetchurl, pkgs, pythonPackages }:
pythonPackages.buildPythonPackage rec {
version = "0.4.0";
name = "khard-${version}";
namePrefix = "";
src = fetchurl {
url = "https://github.com/scheibler/khard/archive/v${version}.tar.gz";
sha256 = "0xvg8725297faw5mk7ka4xjc968vq3ix7izd4vmsaqysl43gnh21";
};
propagatedBuildInputs = with pythonPackages; [
configobj
vobject
argparse
];
buildInputs = with pythonPackages; [
pkgs.vdirsyncer
];
meta = {
homepage = https://github.com/scheibler/khard;
description = "Console carddav client";
license = stdenv.lib.licenses.gpl3;
maintainers = with stdenv.lib.maintainers; [ matthiasbeyer ];
};
}

View file

@ -11748,6 +11748,8 @@ let
khal = callPackage ../applications/misc/khal { };
khard = callPackage ../applications/misc/khard { };
kid3 = callPackage ../applications/audio/kid3 {
qt = qt4;
};