Skip to content

Commit

Permalink
openshot-qt: fix title generator
Browse files Browse the repository at this point in the history
@ferdnyc has kindly provided a patch for our Nix-specific permission
issue OpenShot/openshot-qt#2972.

Fixes #32898.
Fixes #48591.
Related to #55683.
  • Loading branch information
peti committed Sep 3, 2019
1 parent ad13ebe commit d7bbcdf
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion pkgs/applications/video/openshot-qt/default.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
{ stdenv, mkDerivationWith, fetchFromGitHub
{ stdenv, mkDerivationWith, fetchFromGitHub, fetchpatch
, doxygen, python3Packages, libopenshot
, wrapGAppsHook, gtk3 }:

let
fixPermissions = fetchpatch rec {
url = https://github.com/OpenShot/openshot-qt/pull/2973.patch;
sha256 = "037rh0p3k4sdzprlpyb73byjq3qhqk5zd0d4iin6bq602r8bbp0n";
};
in

mkDerivationWith python3Packages.buildPythonApplication rec {
pname = "openshot-qt";
version = "2.4.4";
Expand All @@ -13,6 +20,8 @@ mkDerivationWith python3Packages.buildPythonApplication rec {
sha256 = "0mg63v36h7l8kv2sgf6x8c1n3ygddkqqwlciz7ccxpbm4x1idqba";
};

patches = [ fixPermissions ];

nativeBuildInputs = [ doxygen wrapGAppsHook ];

buildInputs = [ gtk3 ];
Expand Down

0 comments on commit d7bbcdf

Please sign in to comment.