phodav: 2.2 -> 2.3

This commit is contained in:
gnidorah 2019-10-26 04:21:04 +03:00 committed by Jon
parent 7a17d2df56
commit 2632156cf5

View file

@ -1,20 +1,24 @@
{ stdenv, fetchurl
, intltool, pkgconfig, glib, libsoup }:
, pkgconfig, libsoup, meson, ninja }:
let
version = "2.2";
version = "2.3";
in stdenv.mkDerivation rec {
pname = "phodav";
inherit version;
src = fetchurl {
url = "http://ftp.gnome.org/pub/GNOME/sources/phodav/${version}/${pname}-${version}.tar.xz";
sha256 = "1hap0lncbcmivnflh0fbx7y58ry78p9wgj7z03r64ic0kvf0a0q8";
sha256 = "0ndy5qva6bq7vhk06jq2d4nr5fp98xsdwypg42vjz91h9ii1xxkf";
};
buildInputs = [ intltool glib libsoup ];
mesonFlags = [
"-Davahi=disabled"
"-Dsystemd=disabled"
"-Dgtk_doc=disabled"
];
nativeBuildInputs = [ pkgconfig ];
nativeBuildInputs = [ libsoup pkgconfig meson ninja ];
meta = with stdenv.lib; {
description = "WebDav server implementation and library using libsoup";