mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 00:53:12 +03:00
libsForQt5.libopenshot: tidy up nixpkgs-hammering comments
* Remove now-unused dependency from arguments * Move swig to nativeBuildInputs * Add comment to fetchpatch
This commit is contained in:
parent
3af3db2024
commit
2bf2252d6a
@ -2,7 +2,7 @@
|
||||
, pkg-config, cmake, doxygen
|
||||
, libopenshot-audio, imagemagick, ffmpeg
|
||||
, swig, python3, jsoncpp
|
||||
, unittest-cpp, cppzmq, zeromq
|
||||
, cppzmq, zeromq
|
||||
, qtbase, qtmultimedia
|
||||
, llvmPackages
|
||||
}:
|
||||
@ -20,6 +20,7 @@ stdenv.mkDerivation rec {
|
||||
};
|
||||
|
||||
patches = [
|
||||
# Fix build with GCC 10.
|
||||
(fetchpatch {
|
||||
name = "fix-build-with-gcc-10.patch";
|
||||
url = "https://github.com/OpenShot/libopenshot/commit/13290364e7bea54164ab83d973951f2898ad9e23.diff";
|
||||
@ -33,10 +34,10 @@ stdenv.mkDerivation rec {
|
||||
export _REL_PYTHON_MODULE_PATH=$(toPythonPath $out)
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ pkg-config cmake doxygen ];
|
||||
nativeBuildInputs = [ pkg-config cmake doxygen swig ];
|
||||
|
||||
buildInputs =
|
||||
[ imagemagick ffmpeg swig python3 jsoncpp
|
||||
[ imagemagick ffmpeg python3 jsoncpp
|
||||
cppzmq zeromq qtbase qtmultimedia ]
|
||||
++ optional stdenv.isDarwin llvmPackages.openmp
|
||||
;
|
||||
|
Loading…
Reference in New Issue
Block a user