From e0053a7a8a55168bb2d8a413389c1ef0815b5116 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vojt=C4=9Bch=20K=C3=A1n=C4=9B?= Date: Thu, 10 Mar 2022 16:13:58 +0100 Subject: [PATCH] lightworks: 2021.2.1 -> 2022.1.1 --- pkgs/applications/video/lightworks/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/video/lightworks/default.nix b/pkgs/applications/video/lightworks/default.nix index affc585ed351..6bec6e25533f 100644 --- a/pkgs/applications/video/lightworks/default.nix +++ b/pkgs/applications/video/lightworks/default.nix @@ -23,15 +23,15 @@ let ]; lightworks = stdenv.mkDerivation rec { - version = "2021.2.1"; - rev = "128456"; + version = "2022.1.1"; + rev = "132926"; pname = "lightworks"; src = if stdenv.hostPlatform.system == "x86_64-linux" then fetchurl { - url = "https://cdn.lwks.com/releases/${version}/lightworks_${lib.versions.majorMinor version}_r${rev}.deb"; - sha256 = "sha256-GkTg43IUF1NgEm/wT9CZw68Dw/R2BYBU/F4bsCxQowQ="; + url = "https://cdn.lwks.com/releases/${version}/lightworks_${version}_r${rev}.deb"; + sha256 = "sha256-f2lxfv0sFESpDnINDKlfVcR0pySAueMeOMbkgBWzz7Q="; } else throw "${pname}-${version} is not supported on ${stdenv.hostPlatform.system}";