lightworks: 2021.2 -> 2021.2.1

(cherry picked from commit a9edf3b544aba334814ea830b8650a38e56b69c3)
This commit is contained in:
Vojtěch Káně
2021-06-04 19:11:09 +00:00
committed by github-actions[bot]
parent 089308ac91
commit 9f537a52df
@@ -22,14 +22,15 @@ let
]; ];
lightworks = stdenv.mkDerivation rec { lightworks = stdenv.mkDerivation rec {
version = "2021.2"; version = "2021.2.1";
rev = "128456";
pname = "lightworks"; pname = "lightworks";
src = src =
if stdenv.hostPlatform.system == "x86_64-linux" then if stdenv.hostPlatform.system == "x86_64-linux" then
fetchurl { fetchurl {
url = "https://cdn.lwks.com/releases/2021.2/lightworks_2021.2_r128258.deb"; url = "https://cdn.lwks.com/releases/${version}/lightworks_${lib.versions.majorMinor version}_r${rev}.deb";
sha256 = "sha256-IRzoysfGh/P+Xr50+cIjjaKuxdSzgCmJDICFtekfE3Y="; sha256 = "sha256-GkTg43IUF1NgEm/wT9CZw68Dw/R2BYBU/F4bsCxQowQ=";
} }
else throw "${pname}-${version} is not supported on ${stdenv.hostPlatform.system}"; else throw "${pname}-${version} is not supported on ${stdenv.hostPlatform.system}";