nixpkgs/pkgs/tools/networking/phodav/default.nix

34 lines
817 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl
2021-01-17 03:51:22 +00:00
, pkg-config, libsoup, meson, ninja }:
2018-05-11 18:45:05 +00:00
let
2020-09-17 13:38:07 +00:00
version = "2.5";
2018-05-11 18:45:05 +00:00
in stdenv.mkDerivation rec {
2019-08-13 21:52:01 +00:00
pname = "phodav";
inherit version;
2018-05-11 18:45:05 +00:00
src = fetchurl {
2019-08-13 21:52:01 +00:00
url = "http://ftp.gnome.org/pub/GNOME/sources/phodav/${version}/${pname}-${version}.tar.xz";
2020-09-17 13:38:07 +00:00
sha256 = "045rdzf8isqmzix12lkz6z073b5qvcqq6ad028advm5gf36skw3i";
2018-05-11 18:45:05 +00:00
};
2019-10-26 01:21:04 +00:00
mesonFlags = [
"-Davahi=disabled"
"-Dsystemd=disabled"
"-Dgtk_doc=disabled"
2020-03-14 06:27:10 +00:00
"-Dudev=disabled"
2019-10-26 01:21:04 +00:00
];
2018-05-11 18:45:05 +00:00
2021-01-17 03:51:22 +00:00
nativeBuildInputs = [ libsoup pkg-config meson ninja ];
2018-05-11 18:45:05 +00:00
2020-03-14 06:27:10 +00:00
outputs = [ "out" "dev" "lib" ];
meta = with lib; {
2018-05-11 18:45:05 +00:00
description = "WebDav server implementation and library using libsoup";
homepage = "https://wiki.gnome.org/phodav";
2018-05-11 18:45:05 +00:00
license = licenses.lgpl21;
maintainers = with maintainers; [ ];
2018-05-11 18:45:05 +00:00
platforms = platforms.linux;
};
}