mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
2641d97cbf
Reproduction script: # Bulk rewrite ./maintainers/scripts/sha-to-sri.py pkgs/by-name # Revert some packages which will need manual intervention for n in amdvlk azure-cli cargo-profiler corefonts flatito fluxcd gist perf_data_converter protoc-gen-js solana-cli swt verible; do git checkout -- "pkgs/by-name/${n:0:2}/${n}" done
72 lines
1.5 KiB
Nix
72 lines
1.5 KiB
Nix
{ stdenv
|
|
, lib
|
|
, gettext
|
|
, meson
|
|
, ninja
|
|
, fetchurl
|
|
, apacheHttpdPackages
|
|
, pkg-config
|
|
, glib
|
|
, libxml2
|
|
, systemd
|
|
, wrapGAppsNoGuiHook
|
|
, itstool
|
|
, gnome
|
|
}:
|
|
|
|
let
|
|
inherit (apacheHttpdPackages) apacheHttpd mod_dnssd;
|
|
in
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "gnome-user-share";
|
|
version = "43.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/gnome-user-share/${lib.versions.major finalAttrs.version}/gnome-user-share-${finalAttrs.version}.tar.xz";
|
|
hash = "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
|
|
wrapGAppsNoGuiHook
|
|
];
|
|
|
|
buildInputs = [
|
|
glib
|
|
systemd
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
passthru = {
|
|
updateScript = gnome.updateScript {
|
|
packageName = "gnome-user-share";
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://gitlab.gnome.org/GNOME/gnome-user-share";
|
|
description = "Service that exports the contents of the Public folder in your home directory on the local network";
|
|
maintainers = teams.gnome.members;
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
};
|
|
})
|