tail-tray: 0.2.21 -> 0.2.22

This commit is contained in:
Svenum 2025-05-09 08:20:14 +02:00
parent cc4eb12f0a
commit 9677ba2666

View file

@ -3,6 +3,7 @@
fetchFromGitHub, fetchFromGitHub,
davfs2, davfs2,
cmake, cmake,
extra-cmake-modules,
stdenv, stdenv,
pkg-config, pkg-config,
kdePackages, kdePackages,
@ -10,25 +11,32 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "tail-tray"; pname = "tail-tray";
version = "0.2.21"; version = "0.2.22";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "SneWs"; owner = "SneWs";
repo = "tail-tray"; repo = "tail-tray";
tag = "v${version}"; tag = "v${version}";
sha256 = "sha256-zdmU4GdEVOT8wUgOxJAGsLQEb35O/RUjc8HcYpwIkiM="; sha256 = "sha256-1tYuZBJFIGwub3wJR/Ms1Dybhn3KMzKYrpgzZEXwqWU=";
}; };
nativeBuildInputs = with kdePackages; [ nativeBuildInputs = with kdePackages; [
wrapQtAppsHook wrapQtAppsHook
qttools qttools
cmake cmake
extra-cmake-modules
pkg-config pkg-config
]; ];
buildInputs = with kdePackages; [ buildInputs = with kdePackages; [
qtbase qtbase
davfs2 davfs2
knotifyconfig
];
cmakeFlags = [
"-DKNOTIFICATIONS_ENABLED=ON"
"-DDAVFS_ENABLED=ON"
]; ];
patches = [ patches = [