corrscope: cleanup

This commit is contained in:
Sandro Jäckel 2021-08-08 01:49:08 +02:00
parent d85ded6d18
commit 1893e96653
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -30,17 +30,17 @@ mkDerivationWith python3Packages.buildPythonApplication rec {
}) })
]; ];
nativeBuildInputs = [ wrapQtAppsHook ]; nativeBuildInputs = [ wrapQtAppsHook ] ++ (with python3Packages; [ poetry-core ]);
buildInputs = [ ffmpeg qtbase ]; buildInputs = [ ffmpeg qtbase ];
propagatedBuildInputs = with python3Packages; [ appdirs atomicwrites attrs click matplotlib numpy poetry-core pyqt5 ruamel_yaml ]; propagatedBuildInputs = with python3Packages; [ appdirs atomicwrites attrs click matplotlib numpy pyqt5 ruamel_yaml ];
dontWrapQtApps = true; dontWrapQtApps = true;
preFixup = '' preFixup = ''
makeWrapperArgs+=( makeWrapperArgs+=(
--prefix PATH : ${ffmpeg}/bin --prefix PATH : ${lib.makeBinPath [ ffmpeg ]}
"''${qtWrapperArgs[@]}" "''${qtWrapperArgs[@]}"
) )
''; '';