usbguard-notifier: 0.1.0 -> 0.1.1 (#417086)

This commit is contained in:
Nick Cao
2025-06-16 18:27:59 -04:00
committed by GitHub

View File

@@ -2,7 +2,6 @@
lib,
stdenv,
fetchFromGitHub,
fetchpatch,
autoreconfHook,
pkg-config,
libqb,
@@ -13,32 +12,29 @@
asciidoc,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "usbguard-notifier";
version = "0.1.0";
version = "0.1.1";
src = fetchFromGitHub {
owner = "Cropi";
repo = "usbguard-notifier";
rev = "usbguard-notifier-${version}";
hash = "sha256-gWvCGSbOuey2ELAPD2WCG4q77IClL0S7rE2RaUJDc1I=";
tag = "usbguard-notifier-${finalAttrs.version}";
hash = "sha256-EP+NUzT5nu7rJeSEyxs/JARVx7jH2Vip73ksmQw+ABM=";
};
patches = [
# gcc-13 compatibility upstream fix:
# https://github.com/Cropi/usbguard-notifier/pull/74
(fetchpatch {
name = "gcc-13.patch";
url = "https://github.com/Cropi/usbguard-notifier/commit/f4586b732c8a7379aacbc9899173beeacfd54793.patch";
hash = "sha256-2q/qD6yEQUPxA/UutGIZKFJ3hHJ8ZlGMZI1wJyMRbmo=";
})
];
postPatch = ''
substituteInPlace configure.ac \
--replace-fail 'AC_MSG_FAILURE([Cannot detect the systemd system unit dir])' \
'systemd_unit_dir="$out/lib/systemd/user"'
'';
nativeBuildInputs = [
autoreconfHook
pkg-config
asciidoc
];
buildInputs = [
libqb
usbguard
@@ -48,12 +44,6 @@ stdenv.mkDerivation rec {
configureFlags = [ "CPPFLAGS=-I${catch2}/include/catch2" ];
prePatch = ''
substituteInPlace configure.ac \
--replace 'AC_MSG_FAILURE([Cannot detect the systemd system unit dir])' \
'systemd_unit_dir="$out/lib/systemd/user"'
'';
meta = {
description = "Notifications for detecting usbguard policy and device presence changes";
homepage = "https://github.com/Cropi/usbguard-notifier";
@@ -62,4 +52,4 @@ stdenv.mkDerivation rec {
license = lib.licenses.gpl2Plus;
mainProgram = "usbguard-notifier";
};
}
})