mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
e77b6cccfc
https://gitlab.gnome.org/GNOME/gnome-user-share/-/compare/43.alpha...43.0 Changelog-Reviewed-By: Jan Tojnar <jtojnar@gmail.com>
71 lines
1.4 KiB
Nix
71 lines
1.4 KiB
Nix
{ stdenv
|
|
, lib
|
|
, gettext
|
|
, meson
|
|
, ninja
|
|
, fetchurl
|
|
, apacheHttpd
|
|
, pkg-config
|
|
, glib
|
|
, libxml2
|
|
, systemd
|
|
, wrapGAppsHook
|
|
, itstool
|
|
, mod_dnssd
|
|
, gnome
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gnome-user-share";
|
|
version = "43.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/gnome-user-share/${lib.versions.major version}/gnome-user-share-${version}.tar.xz";
|
|
sha256 = "DfMGqgVYMT81Pvf1G/onwDYoGtxFZ34c+/p8n4YVOM4=";
|
|
};
|
|
|
|
preConfigure = ''
|
|
sed -e 's,^LoadModule dnssd_module.\+,LoadModule dnssd_module ${mod_dnssd}/modules/mod_dnssd.so,' \
|
|
-e 's,''${HTTP_MODULES_PATH},${apacheHttpd}/modules,' \
|
|
-i data/dav_user_2.4.conf
|
|
'';
|
|
|
|
mesonFlags = [
|
|
"-Dhttpd=${apacheHttpd.out}/bin/httpd"
|
|
"-Dmodules_path=${apacheHttpd}/modules"
|
|
"-Dsystemduserunitdir=${placeholder "out"}/etc/systemd/user"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
meson
|
|
ninja
|
|
gettext
|
|
itstool
|
|
libxml2
|
|
wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
glib
|
|
systemd
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
passthru = {
|
|
updateScript = gnome.updateScript {
|
|
packageName = pname;
|
|
attrPath = "gnome.${pname}";
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://help.gnome.org/users/gnome-user-share/3.8";
|
|
description = "Service that exports the contents of the Public folder in your home directory on the local network";
|
|
maintainers = teams.gnome.members;
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|