puddletag: fix wrapping
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchFromGitHub, python3Packages, chromaprint }:
|
{ stdenv, fetchFromGitHub, python3Packages, wrapQtAppsHook, chromaprint }:
|
||||||
|
|
||||||
python3Packages.buildPythonApplication rec {
|
python3Packages.buildPythonApplication rec {
|
||||||
pname = "puddletag";
|
pname = "puddletag";
|
||||||
@@ -13,6 +13,8 @@ python3Packages.buildPythonApplication rec {
|
|||||||
|
|
||||||
sourceRoot = "source/source";
|
sourceRoot = "source/source";
|
||||||
|
|
||||||
|
nativeBuildInputs = [ wrapQtAppsHook ];
|
||||||
|
|
||||||
propagatedBuildInputs = [ chromaprint ] ++ (with python3Packages; [
|
propagatedBuildInputs = [ chromaprint ] ++ (with python3Packages; [
|
||||||
configobj
|
configobj
|
||||||
mutagen
|
mutagen
|
||||||
@@ -20,9 +22,13 @@ python3Packages.buildPythonApplication rec {
|
|||||||
pyqt5
|
pyqt5
|
||||||
]);
|
]);
|
||||||
|
|
||||||
doCheck = false; # there are no tests
|
preFixup = ''
|
||||||
|
makeWrapperArgs+=("''${qtWrapperArgs[@]}")
|
||||||
|
'';
|
||||||
|
|
||||||
dontStrip = true; # we are not generating any binaries
|
doCheck = false; # there are no tests
|
||||||
|
|
||||||
|
dontStrip = true; # we are not generating any binaries
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "An audio tag editor similar to the Windows program, Mp3tag";
|
description = "An audio tag editor similar to the Windows program, Mp3tag";
|
||||||
@@ -30,6 +36,5 @@ python3Packages.buildPythonApplication rec {
|
|||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
maintainers = with maintainers; [ peterhoeg ];
|
maintainers = with maintainers; [ peterhoeg ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
broken = true; # Needs Qt wrapping
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -20730,7 +20730,7 @@ in
|
|||||||
|
|
||||||
gradio = callPackage ../applications/audio/gradio { };
|
gradio = callPackage ../applications/audio/gradio { };
|
||||||
|
|
||||||
puddletag = callPackage ../applications/audio/puddletag { };
|
puddletag = libsForQt5.callPackage ../applications/audio/puddletag { };
|
||||||
|
|
||||||
w_scan = callPackage ../applications/video/w_scan { };
|
w_scan = callPackage ../applications/video/w_scan { };
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user