We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 089308a commit 9f537a5Copy full SHA for 9f537a5
pkgs/applications/video/lightworks/default.nix
@@ -22,14 +22,15 @@ let
22
];
23
24
lightworks = stdenv.mkDerivation rec {
25
- version = "2021.2";
+ version = "2021.2.1";
26
+ rev = "128456";
27
pname = "lightworks";
28
29
src =
30
if stdenv.hostPlatform.system == "x86_64-linux" then
31
fetchurl {
- url = "https://cdn.lwks.com/releases/2021.2/lightworks_2021.2_r128258.deb";
32
- sha256 = "sha256-IRzoysfGh/P+Xr50+cIjjaKuxdSzgCmJDICFtekfE3Y=";
+ url = "https://cdn.lwks.com/releases/${version}/lightworks_${lib.versions.majorMinor version}_r${rev}.deb";
33
+ sha256 = "sha256-GkTg43IUF1NgEm/wT9CZw68Dw/R2BYBU/F4bsCxQowQ=";
34
}
35
else throw "${pname}-${version} is not supported on ${stdenv.hostPlatform.system}";
36
0 commit comments