Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: e9174748ac2c
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 051abe836cc9
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Apr 12, 2020

  1. lightworks: fix meta

    The meta attrs must be in the final derivation, as otherwise `nix edit`
    or `nix search` don't work.
    erictapen authored and bhipple committed Apr 12, 2020
    Copy the full SHA
    051abe8 View commit details
Showing with 8 additions and 8 deletions.
  1. +8 −8 pkgs/applications/video/lightworks/default.nix
16 changes: 8 additions & 8 deletions pkgs/applications/video/lightworks/default.nix
Original file line number Diff line number Diff line change
@@ -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" ];
};
}