Unverified Commit 4d336f52 authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

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

parents edcb0db7 b49208bf
Loading
Loading
Loading
Loading
+11 −21
Original line number Diff line number Diff line
@@ -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";
  };
}
})