phodav: init at 2.2
This commit is contained in:
parent
30dc291331
commit
ce0d9eecff
2 changed files with 27 additions and 0 deletions
25
pkgs/tools/networking/phodav/default.nix
Normal file
25
pkgs/tools/networking/phodav/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ stdenv, fetchurl
|
||||
, intltool, pkgconfig, glib, libsoup }:
|
||||
|
||||
let
|
||||
version = "2.2";
|
||||
in stdenv.mkDerivation rec {
|
||||
name = "phodav-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://ftp.gnome.org/pub/GNOME/sources/phodav/${version}/${name}.tar.xz";
|
||||
sha256 = "1hap0lncbcmivnflh0fbx7y58ry78p9wgj7z03r64ic0kvf0a0q8";
|
||||
};
|
||||
|
||||
buildInputs = [ intltool glib libsoup ];
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "WebDav server implementation and library using libsoup";
|
||||
homepage = https://wiki.gnome.org/phodav;
|
||||
license = licenses.lgpl21;
|
||||
maintainers = with maintainers; [ gnidorah ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -4396,6 +4396,8 @@ with pkgs;
|
|||
|
||||
philter = callPackage ../tools/networking/philter { };
|
||||
|
||||
phodav = callPackage ../tools/networking/phodav { };
|
||||
|
||||
pinentry = callPackage ../tools/security/pinentry {
|
||||
libcap = if stdenv.isDarwin then null else libcap;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue