Merge pull request #82040 from gnidorah/phodav

phodav: 2.3 -> 2.4
This commit is contained in:
Jörg Thalheim 2020-03-15 18:25:43 +00:00 committed by GitHub
commit f1b69e4d76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,24 +2,27 @@
, pkgconfig, libsoup, meson, ninja }: , pkgconfig, libsoup, meson, ninja }:
let let
version = "2.3"; version = "2.4";
in stdenv.mkDerivation rec { in stdenv.mkDerivation rec {
pname = "phodav"; pname = "phodav";
inherit version; inherit version;
src = fetchurl { src = fetchurl {
url = "http://ftp.gnome.org/pub/GNOME/sources/phodav/${version}/${pname}-${version}.tar.xz"; url = "http://ftp.gnome.org/pub/GNOME/sources/phodav/${version}/${pname}-${version}.tar.xz";
sha256 = "0ndy5qva6bq7vhk06jq2d4nr5fp98xsdwypg42vjz91h9ii1xxkf"; sha256 = "1hxq8c5qfah3w7mxcyy3yhzdgswplll31a69p5mqdl04bsvw5pbx";
}; };
mesonFlags = [ mesonFlags = [
"-Davahi=disabled" "-Davahi=disabled"
"-Dsystemd=disabled" "-Dsystemd=disabled"
"-Dgtk_doc=disabled" "-Dgtk_doc=disabled"
"-Dudev=disabled"
]; ];
nativeBuildInputs = [ libsoup pkgconfig meson ninja ]; nativeBuildInputs = [ libsoup pkgconfig meson ninja ];
outputs = [ "out" "dev" "lib" ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "WebDav server implementation and library using libsoup"; description = "WebDav server implementation and library using libsoup";
homepage = https://wiki.gnome.org/phodav; homepage = https://wiki.gnome.org/phodav;