tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
lightworks: 2022.1.1 -> 2023.1
lightworks: fix whitespace
kashw2
2 years ago
8c1e87be
e0ef2f29
+9
-5
1 changed file
expand all
collapse all
unified
split
pkgs
applications
video
lightworks
default.nix
+9
-5
pkgs/applications/video/lightworks/default.nix
···
1
{ lib, stdenv, fetchurl, dpkg, makeWrapper, buildFHSEnv
2
, gtk3, gdk-pixbuf, cairo, libjpeg_original, glib, pango, libGLU
3
-
, libGL, nvidia_cg_toolkit, zlib, openssl, libuuid , alsa-lib, udev, libjack2
0
4
}:
5
let
6
fullPath = lib.makeLibraryPath [
···
20
alsa-lib
21
libjack2
22
udev
0
0
0
23
];
24
25
lightworks = stdenv.mkDerivation rec {
26
-
version = "2022.1.1";
27
-
rev = "132926";
28
pname = "lightworks";
29
30
src =
31
if stdenv.hostPlatform.system == "x86_64-linux" then
32
fetchurl {
33
url = "https://cdn.lwks.com/releases/${version}/lightworks_${version}_r${rev}.deb";
34
-
sha256 = "sha256-f2lxfv0sFESpDnINDKlfVcR0pySAueMeOMbkgBWzz7Q=";
35
}
36
else throw "${pname}-${version} is not supported on ${stdenv.hostPlatform.system}";
37
···
87
homepage = "https://www.lwks.com/";
88
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
89
license = lib.licenses.unfree;
90
-
maintainers = with lib.maintainers; [ antonxy vojta001 ];
91
platforms = [ "x86_64-linux" ];
92
};
93
}
···
1
{ lib, stdenv, fetchurl, dpkg, makeWrapper, buildFHSEnv
2
, gtk3, gdk-pixbuf, cairo, libjpeg_original, glib, pango, libGLU
3
+
, libGL, nvidia_cg_toolkit, zlib, openssl, libuuid
4
+
, alsa-lib, udev, libjack2, freetype, libva, libvdpau
5
}:
6
let
7
fullPath = lib.makeLibraryPath [
···
21
alsa-lib
22
libjack2
23
udev
24
+
freetype
25
+
libva
26
+
libvdpau
27
];
28
29
lightworks = stdenv.mkDerivation rec {
30
+
version = "2023.1";
31
+
rev = "141770";
32
pname = "lightworks";
33
34
src =
35
if stdenv.hostPlatform.system == "x86_64-linux" then
36
fetchurl {
37
url = "https://cdn.lwks.com/releases/${version}/lightworks_${version}_r${rev}.deb";
38
+
sha256 = "sha256-QRbghrZQbprl2wUBKNMJVBeW0Ek6nWvo4006jyPYIBg=";
39
}
40
else throw "${pname}-${version} is not supported on ${stdenv.hostPlatform.system}";
41
···
91
homepage = "https://www.lwks.com/";
92
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
93
license = lib.licenses.unfree;
94
+
maintainers = with lib.maintainers; [ antonxy vojta001 kashw2 ];
95
platforms = [ "x86_64-linux" ];
96
};
97
}