deskflow: 1.21.2 -> 1.22.0 (#413366)

authored by

Peder Bergebakken Sundt and committed by
GitHub
42abbd51 97d37c20

+14 -5
+14 -5
pkgs/by-name/de/deskflow/package.nix
··· 34 35 stdenv.mkDerivation (finalAttrs: { 36 pname = "deskflow"; 37 - version = "1.21.2"; 38 39 src = fetchFromGitHub { 40 owner = "deskflow"; 41 repo = "deskflow"; 42 tag = "v${finalAttrs.version}"; 43 - hash = "sha256-gXFBn8hlI8MZ9Vy3goPjosn0JgvaAgZaFIGh/3rFdx8="; 44 }; 45 46 postPatch = '' ··· 101 runHook preCheck 102 103 export QT_QPA_PLATFORM=offscreen 104 - ./bin/unittests 105 - ./bin/integtests 106 107 runHook postCheck 108 ''; 109 110 - passthru.updateScript = nix-update-script { }; 111 112 meta = { 113 homepage = "https://github.com/deskflow/deskflow"; ··· 117 license = with lib; [ 118 licenses.gpl2Plus 119 licenses.openssl 120 ]; 121 platforms = lib.platforms.linux; 122 };
··· 34 35 stdenv.mkDerivation (finalAttrs: { 36 pname = "deskflow"; 37 + version = "1.22.0"; 38 39 src = fetchFromGitHub { 40 owner = "deskflow"; 41 repo = "deskflow"; 42 tag = "v${finalAttrs.version}"; 43 + hash = "sha256-tNHQHReeOUc5lCs4dI3a5UzeJao+RPWXH4KdWhPwESI="; 44 }; 45 46 postPatch = '' ··· 101 runHook preCheck 102 103 export QT_QPA_PLATFORM=offscreen 104 + ./bin/legacytests 105 106 runHook postCheck 107 ''; 108 109 + postInstall = '' 110 + install -Dm644 ../README.md ../doc/configuration.md -t $out/share/doc/deskflow 111 + ''; 112 + 113 + passthru.updateScript = nix-update-script { 114 + extraArgs = [ 115 + "--version-regex" 116 + "^v([0-9.]+)$" 117 + ]; 118 + }; 119 120 meta = { 121 homepage = "https://github.com/deskflow/deskflow"; ··· 125 license = with lib; [ 126 licenses.gpl2Plus 127 licenses.openssl 128 + licenses.mit # share/applications/org.deskflow.deskflow.desktop 129 ]; 130 platforms = lib.platforms.linux; 131 };