lightworks: fix meta

The meta attrs must be in the final derivation, as otherwise `nix edit`
or `nix search` don't work.
This commit is contained in:
Justin Humm 2020-04-12 17:29:30 +02:00 committed by Benjamin Hipple
parent e9174748ac
commit 051abe836c

View File

@ -65,14 +65,6 @@ let
'';
dontPatchELF = true;
meta = {
description = "Professional Non-Linear Video Editor";
homepage = "https://www.lwks.com/";
license = stdenv.lib.licenses.unfree;
maintainers = [ stdenv.lib.maintainers.antonxy ];
platforms = [ "x86_64-linux" ];
};
};
# Lightworks expects some files in /usr/share/lightworks
@ -84,4 +76,12 @@ in buildFHSUserEnv {
];
runScript = "lightworks";
meta = {
description = "Professional Non-Linear Video Editor";
homepage = "https://www.lwks.com/";
license = stdenv.lib.licenses.unfree;
maintainers = [ stdenv.lib.maintainers.antonxy ];
platforms = [ "x86_64-linux" ];
};
}