Merge pull request #233705 from lilyinstarlight/upd/kodelife-1.1.0

kodelife: 1.0.8.170 -> 1.1.0.173

authored by Pavol Rusnak and committed by GitHub 21793bed 3209cec1

+5 -7
+5 -7
pkgs/applications/graphics/kodelife/default.nix
··· 45 45 46 46 stdenv.mkDerivation rec { 47 47 pname = "kodelife"; 48 - version = "1.0.8.170"; 48 + version = "1.1.0.173"; 49 49 50 50 suffix = { 51 51 aarch64-linux = "linux-arm64"; 52 52 armv7l-linux = "linux-armhf"; 53 - x86_64-linux = "linux-x86_64"; 53 + x86_64-linux = "linux-x64"; 54 54 }.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); 55 55 56 56 src = fetchurl { 57 57 url = "https://hexler.net/pub/${pname}/${pname}-${version}-${suffix}.deb"; 58 58 hash = { 59 - aarch64-linux = "sha256-FHE87B34QSc7rcKHE3wkZq1VzcZeKWh68rlIIMDRmm8="; 60 - armv7l-linux = "sha256-OqomlL7IFHyQQULbdbf5I0dRXdy3lDHY4ej2P1OZgzo="; 61 - x86_64-linux = "sha256-QNcWMVZ4bTXPLFEtD35hP2LbuNntvF2e9Wk2knt4TBY="; 59 + aarch64-linux = "sha256-WPUWvgVZR+2Dg4zpk+iUemMBGlGBDtaGkUGrWuF5LBs="; 60 + armv7l-linux = "sha256-tOPqP40e0JrXg92OluMZrurWHXZavGwTkJiNN1IFVEE="; 61 + x86_64-linux = "sha256-ZA8BlUtKaiSnXGncYwb2BbhBlULuGz7SWuXL0RAgQLI="; 62 62 }.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); 63 63 }; 64 - 65 - unpackCmd = "mkdir root; dpkg-deb -x $curSrc root"; 66 64 67 65 strictDeps = true; 68 66