mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
phodav: 2.2 -> 2.3
This commit is contained in:
parent
7a17d2df56
commit
2632156cf5
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user