nixpkgs/pkgs/by-name/wa/warpinator/package.nix

97 lines
1.8 KiB
Nix

{ stdenv
, fetchFromGitHub
, lib
, gobject-introspection
, meson
, ninja
, python3
, gtk3
, gdk-pixbuf
, xapp
, wrapGAppsHook3
, gettext
, polkit
, glib
, gitUpdater
, bubblewrap
}:
let
pythonEnv = python3.withPackages (pp: with pp; [
grpcio-tools
protobuf
pygobject3
setproctitle
python-xapp
zeroconf
grpcio
setuptools
cryptography
pynacl
netifaces
netaddr
ifaddr
qrcode
]);
in
stdenv.mkDerivation rec {
pname = "warpinator";
version = "1.8.6";
src = fetchFromGitHub {
owner = "linuxmint";
repo = pname;
rev = version;
hash = "sha256-GJp2iRB3F42pSfYd2FLpmDTZ1zqt8thdRPAHu9/ns5E=";
};
nativeBuildInputs = [
meson
ninja
gobject-introspection
wrapGAppsHook3
gettext
polkit # for its gettext
];
buildInputs = [
glib
gtk3
gdk-pixbuf
pythonEnv
xapp
];
mesonFlags = [
"-Dbundle-grpc=false"
"-Dbundle-zeroconf=false"
];
postPatch = ''
chmod +x install-scripts/*
patchShebangs .
find . -type f -exec sed -i \
-e s,/usr/libexec/warpinator,$out/libexec/warpinator,g \
{} +
# We make bubblewrap mode always available since
# landlock mode is not supported in old kernels.
substituteInPlace src/warpinator-launch.py \
--replace-fail '"/usr/bin/python3"' '"${pythonEnv.interpreter}"' \
--replace-fail "/usr/bin/bwrap" "${bubblewrap}/bin/bwrap" \
--replace-fail 'GLib.find_program_in_path("bwrap")' "True"
'';
passthru.updateScript = gitUpdater {
ignoredVersions = "^master.*";
};
meta = with lib; {
homepage = "https://github.com/linuxmint/warpinator";
description = "Share files across the LAN";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = teams.cinnamon.members;
};
}