deskflow: 1.20.1 -> 1.21.2

This commit is contained in:
emaryn 2025-04-01 05:00:58 +08:00 committed by emaryn
parent 13b4d6ebe8
commit 1a99ed331d

View file

@ -29,17 +29,18 @@
lerc,
doxygen,
writableTmpDirAsHomeHook,
nix-update-script,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "deskflow";
version = "1.20.1";
version = "1.21.2";
src = fetchFromGitHub {
owner = "deskflow";
repo = "deskflow";
tag = "v${version}";
hash = "sha256-lX8K7HuC/Sxa5M0h+r5NmdFf032nVrE9JF6H+IBWPUA=";
tag = "v${finalAttrs.version}";
hash = "sha256-gXFBn8hlI8MZ9Vy3goPjosn0JgvaAgZaFIGh/3rFdx8=";
};
postPatch = ''
@ -106,6 +107,8 @@ stdenv.mkDerivation rec {
runHook postCheck
'';
passthru.updateScript = nix-update-script { };
meta = {
homepage = "https://github.com/deskflow/deskflow";
description = "Share one mouse and keyboard between multiple computers on Windows, macOS and Linux";
@ -117,4 +120,4 @@ stdenv.mkDerivation rec {
];
platforms = lib.platforms.linux;
};
}
})