phodav: 2.2 -> 2.3
This commit is contained in:
parent
7a17d2df56
commit
2632156cf5
@ -1,20 +1,24 @@
|
|||||||
{ stdenv, fetchurl
|
{ stdenv, fetchurl
|
||||||
, intltool, pkgconfig, glib, libsoup }:
|
, pkgconfig, libsoup, meson, ninja }:
|
||||||
|
|
||||||
let
|
let
|
||||||
version = "2.2";
|
version = "2.3";
|
||||||
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 = "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; {
|
meta = with stdenv.lib; {
|
||||||
description = "WebDav server implementation and library using libsoup";
|
description = "WebDav server implementation and library using libsoup";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user