4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
34 lines
824 B
Nix
34 lines
824 B
Nix
{ lib, stdenv, fetchurl
|
|
, pkgconfig, libsoup, meson, ninja }:
|
|
|
|
let
|
|
version = "2.5";
|
|
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 = "045rdzf8isqmzix12lkz6z073b5qvcqq6ad028advm5gf36skw3i";
|
|
};
|
|
|
|
mesonFlags = [
|
|
"-Davahi=disabled"
|
|
"-Dsystemd=disabled"
|
|
"-Dgtk_doc=disabled"
|
|
"-Dudev=disabled"
|
|
];
|
|
|
|
nativeBuildInputs = [ libsoup pkgconfig meson ninja ];
|
|
|
|
outputs = [ "out" "dev" "lib" ];
|
|
|
|
meta = with lib; {
|
|
description = "WebDav server implementation and library using libsoup";
|
|
homepage = "https://wiki.gnome.org/phodav";
|
|
license = licenses.lgpl21;
|
|
maintainers = with maintainers; [ gnidorah ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|