kdocker: init at 5.4

This commit is contained in:
hexclover 2023-07-31 02:54:22 +08:00
parent 6c84ca2d81
commit a9e76af1b9
2 changed files with 56 additions and 0 deletions

View file

@ -0,0 +1,54 @@
{ stdenv
, lib
, fetchFromGitHub
, qmake
, wrapQtAppsHook
, libX11
, libXmu
, libXpm
, qtbase
, qtx11extras
}:
stdenv.mkDerivation (finalAttrs: {
pname = "kdocker";
version = "5.4";
src = fetchFromGitHub {
owner = "user-none";
repo = "KDocker";
rev = "${finalAttrs.version}";
hash = "sha256-CTz2M9nv5Rf1amnSpLiIUZLH9Q3te6ZyFNUzSGHdYJc=";
};
nativeBuildInputs = [
qmake
wrapQtAppsHook
];
buildInputs = [
libX11
libXmu
libXpm
qtbase
qtx11extras
];
prePatch = ''
for h in Xatom Xlib Xmu; do
sed -i "s|#include <$h|#include <X11/$h|" src/xlibutil.h src/{kdocker,scanner,trayitem,trayitemmanager}.cpp
done
for t in target icons desktop appdata; do
sed -i "s|$t.path = /usr|$t.path = $out|" kdocker.pro
done
sed -i "s|/etc/bash_completion.d|$out/share/bash-completion/completions|" kdocker.pro
'';
meta = with lib; {
description = "Dock any application into the system tray";
homepage = "https://github.com/user-none/KDocker";
license = licenses.gpl2Only;
maintainers = with maintainers; [ hexclover ];
platforms = platforms.linux;
};
})

View file

@ -1776,6 +1776,8 @@ with pkgs;
kaufkauflist = callPackage ../applications/misc/kaufkauflist { };
kdocker = libsForQt5.callPackage ../tools/X11/kdocker { };
kicli = callPackage ../tools/misc/kicli { };
ksmbd-tools = callPackage ../os-specific/linux/ksmbd-tools { };