summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVojtěch Káně <vojtech.kane@gmail.com>2021-05-26 11:23:44 +0200
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2021-06-04 19:11:09 +0000
commit9f537a52df4d901d7b0081cc58a71e368939b784 (patch)
tree6906221331d23f52ac8a2d368523e6ad31050172
parentlightworks: add me as a maintainer (diff)
downloadnixpkgs-9f537a52df4d901d7b0081cc58a71e368939b784.tar.gz
lightworks: 2021.2 -> 2021.2.1
(cherry picked from commit a9edf3b544aba334814ea830b8650a38e56b69c3)
-rw-r--r--pkgs/applications/video/lightworks/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/applications/video/lightworks/default.nix b/pkgs/applications/video/lightworks/default.nix
index ecc5a6491dd5..9d940cd29b41 100644
--- a/pkgs/applications/video/lightworks/default.nix
+++ b/pkgs/applications/video/lightworks/default.nix
@@ -22,14 +22,15 @@ let
];
lightworks = stdenv.mkDerivation rec {
- version = "2021.2";
+ version = "2021.2.1";
+ rev = "128456";
pname = "lightworks";
src =
if stdenv.hostPlatform.system == "x86_64-linux" then
fetchurl {
- url = "https://cdn.lwks.com/releases/2021.2/lightworks_2021.2_r128258.deb";
- sha256 = "sha256-IRzoysfGh/P+Xr50+cIjjaKuxdSzgCmJDICFtekfE3Y=";
+ url = "https://cdn.lwks.com/releases/${version}/lightworks_${lib.versions.majorMinor version}_r${rev}.deb";
+ sha256 = "sha256-GkTg43IUF1NgEm/wT9CZw68Dw/R2BYBU/F4bsCxQowQ=";
}
else throw "${pname}-${version} is not supported on ${stdenv.hostPlatform.system}";