f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
92 lines
1.6 KiB
Nix
92 lines
1.6 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, buildGoModule
|
|
, cmake
|
|
, extra-cmake-modules
|
|
, git
|
|
, go
|
|
, wrapQtAppsHook
|
|
, qtbase
|
|
, qtdeclarative
|
|
, qtsvg
|
|
, qtwayland
|
|
, kconfig
|
|
, kcoreaddons
|
|
, kguiaddons
|
|
, ki18n
|
|
, kirigami
|
|
, kirigami-addons
|
|
, knotifications
|
|
, nlohmann_json
|
|
, qqc2-desktop-style
|
|
}:
|
|
|
|
let
|
|
version = "0.17.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "f-koehler";
|
|
repo = "KTailctl";
|
|
rev = "v${version}";
|
|
hash = "sha256-urB8NcdQMF6RNX8F2CpzOd0ZkRi3IS4XFyOOXIeChpY=";
|
|
};
|
|
|
|
goDeps = (buildGoModule {
|
|
pname = "ktailctl-go-wrapper";
|
|
inherit src version;
|
|
modRoot = "src/wrapper";
|
|
vendorHash = "sha256-Ls4MVppMJbUUukaKkDAN8Lx/s09JRJTf/RMgk0iDcnw=";
|
|
}).goModules;
|
|
in
|
|
stdenv.mkDerivation {
|
|
pname = "ktailctl";
|
|
inherit version src;
|
|
|
|
postPatch = ''
|
|
cp -r --reflink=auto ${goDeps} src/wrapper/vendor
|
|
'';
|
|
|
|
# needed for go build to work
|
|
preBuild = ''
|
|
export HOME=$TMPDIR
|
|
'';
|
|
|
|
cmakeFlags = [
|
|
# actually just disables Go vendoring updates
|
|
"-DKTAILCTL_FLATPAK_BUILD=ON"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
extra-cmake-modules
|
|
git
|
|
go
|
|
wrapQtAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
qtbase
|
|
qtdeclarative
|
|
qtsvg
|
|
qtwayland
|
|
kconfig
|
|
kcoreaddons
|
|
kguiaddons
|
|
ki18n
|
|
kirigami
|
|
kirigami-addons
|
|
knotifications
|
|
nlohmann_json
|
|
qqc2-desktop-style
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "GUI to monitor and manage Tailscale on your Linux desktop";
|
|
homepage = "https://github.com/f-koehler/KTailctl";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ k900 ];
|
|
mainProgram = "ktailctl";
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|