mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
phodav: 2.3 -> 2.4
This commit is contained in:
parent
0eb0ddc4db
commit
41543d88ca
1 changed files with 5 additions and 2 deletions
|
@ -2,24 +2,27 @@
|
|||
, pkgconfig, libsoup, meson, ninja }:
|
||||
|
||||
let
|
||||
version = "2.3";
|
||||
version = "2.4";
|
||||
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 = "0ndy5qva6bq7vhk06jq2d4nr5fp98xsdwypg42vjz91h9ii1xxkf";
|
||||
sha256 = "1hxq8c5qfah3w7mxcyy3yhzdgswplll31a69p5mqdl04bsvw5pbx";
|
||||
};
|
||||
|
||||
mesonFlags = [
|
||||
"-Davahi=disabled"
|
||||
"-Dsystemd=disabled"
|
||||
"-Dgtk_doc=disabled"
|
||||
"-Dudev=disabled"
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ libsoup pkgconfig meson ninja ];
|
||||
|
||||
outputs = [ "out" "dev" "lib" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "WebDav server implementation and library using libsoup";
|
||||
homepage = https://wiki.gnome.org/phodav;
|
||||
|
|
Loading…
Reference in a new issue