Skip to content

Commit 0d5f1b0

Browse files
authored
deskflow: 1.20.1 -> 1.21.2 (#394769)
2 parents 643d76b + 1a99ed3 commit 0d5f1b0

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

pkgs/by-name/de/deskflow/package.nix

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,18 @@
2929
lerc,
3030
doxygen,
3131
writableTmpDirAsHomeHook,
32+
nix-update-script,
3233
}:
3334

34-
stdenv.mkDerivation rec {
35+
stdenv.mkDerivation (finalAttrs: {
3536
pname = "deskflow";
36-
version = "1.20.1";
37+
version = "1.21.2";
3738

3839
src = fetchFromGitHub {
3940
owner = "deskflow";
4041
repo = "deskflow";
41-
tag = "v${version}";
42-
hash = "sha256-lX8K7HuC/Sxa5M0h+r5NmdFf032nVrE9JF6H+IBWPUA=";
42+
tag = "v${finalAttrs.version}";
43+
hash = "sha256-gXFBn8hlI8MZ9Vy3goPjosn0JgvaAgZaFIGh/3rFdx8=";
4344
};
4445

4546
postPatch = ''
@@ -106,15 +107,17 @@ stdenv.mkDerivation rec {
106107
runHook postCheck
107108
'';
108109

110+
passthru.updateScript = nix-update-script { };
111+
109112
meta = {
110113
homepage = "https://github.com/deskflow/deskflow";
111114
description = "Share one mouse and keyboard between multiple computers on Windows, macOS and Linux";
112115
mainProgram = "deskflow";
113-
maintainers = with lib.maintainers; [ ];
116+
maintainers = with lib.maintainers; [ flacks ];
114117
license = with lib; [
115118
licenses.gpl2Plus
116119
licenses.openssl
117120
];
118121
platforms = lib.platforms.linux;
119122
};
120-
}
123+
})

0 commit comments

Comments
 (0)