lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

deskflow: 1.19.0 -> 1.20.1 (#387884)

authored by

Pol Dellaiera and committed by
GitHub
b05b1893 3feee057

+2 -9
+2 -9
pkgs/by-name/de/deskflow/package.nix
··· 23 23 libnotify, 24 24 qt6, 25 25 xkeyboard_config, 26 - openssl, 27 26 wayland-protocols, 28 27 wayland, 29 28 libsysprof-capture, ··· 34 33 35 34 stdenv.mkDerivation rec { 36 35 pname = "deskflow"; 37 - version = "1.19.0"; 36 + version = "1.20.1"; 38 37 39 38 src = fetchFromGitHub { 40 39 owner = "deskflow"; 41 40 repo = "deskflow"; 42 41 tag = "v${version}"; 43 - hash = "sha256-Jj2BNqz4pIJ468pywJRKu6GjgGX31GZZtDLHgcvC3JE="; 42 + hash = "sha256-lX8K7HuC/Sxa5M0h+r5NmdFf032nVrE9JF6H+IBWPUA="; 44 43 }; 45 44 46 45 postPatch = '' 47 46 substituteInPlace src/lib/deskflow/unix/AppUtilUnix.cpp \ 48 47 --replace-fail "/usr/share/X11/xkb/rules/evdev.xml" "${xkeyboard_config}/share/X11/xkb/rules/evdev.xml" 49 - substituteInPlace src/lib/gui/tls/TlsCertificate.cpp \ 50 - --replace-fail '"openssl"' '"${lib.getBin openssl}/bin/openssl"' 51 48 substituteInPlace deploy/linux/deploy.cmake \ 52 49 --replace-fail 'message(FATAL_ERROR "Unable to read file /etc/os-release")' 'set(RELEASE_FILE_CONTENTS "")' 53 50 ''; ··· 119 116 licenses.openssl 120 117 ]; 121 118 platforms = lib.platforms.linux; 122 - knownVulnerabilities = [ 123 - "CVE-2021-42072" 124 - "CVE-2021-42073" 125 - ]; 126 119 }; 127 120 }