Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
93 lines
1.9 KiB
Nix
93 lines
1.9 KiB
Nix
{
|
|
lib,
|
|
python312Packages,
|
|
fetchFromGitHub,
|
|
|
|
chromaprint,
|
|
gettext,
|
|
qt5,
|
|
|
|
enablePlayback ? true,
|
|
gst_all_1,
|
|
}:
|
|
|
|
let
|
|
pythonPackages = python312Packages;
|
|
pyqt5 = if enablePlayback then pythonPackages.pyqt5-multimedia else pythonPackages.pyqt5;
|
|
in
|
|
pythonPackages.buildPythonApplication rec {
|
|
pname = "picard";
|
|
# nix-update --commit picard --version-regex 'release-(.*)'
|
|
version = "2.13.3";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "metabrainz";
|
|
repo = "picard";
|
|
tag = "release-${version}";
|
|
hash = "sha256-Q0W5Q1+PbN+yneh98jx0/UNHVfD6okX92hxNzCE+Ibc=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
gettext
|
|
qt5.wrapQtAppsHook
|
|
pythonPackages.pytestCheckHook
|
|
]
|
|
++ lib.optionals (pyqt5.multimediaEnabled) [
|
|
gst_all_1.gst-libav
|
|
gst_all_1.gst-plugins-base
|
|
gst_all_1.gst-plugins-good
|
|
gst_all_1.gst-vaapi
|
|
gst_all_1.gstreamer
|
|
];
|
|
|
|
buildInputs = [
|
|
qt5.qtbase
|
|
qt5.qtwayland
|
|
]
|
|
++ lib.optionals (pyqt5.multimediaEnabled) [
|
|
qt5.qtmultimedia.bin
|
|
];
|
|
|
|
propagatedBuildInputs = with pythonPackages; [
|
|
chromaprint
|
|
discid
|
|
fasteners
|
|
markdown
|
|
mutagen
|
|
pyjwt
|
|
pyqt5
|
|
python-dateutil
|
|
pyyaml
|
|
];
|
|
|
|
setupPyGlobalFlags = [
|
|
"build"
|
|
"--disable-autoupdate"
|
|
"--localedir=${placeholder "out"}/share/locale"
|
|
];
|
|
|
|
preCheck = ''
|
|
export HOME=$(mktemp -d)
|
|
'';
|
|
doCheck = true;
|
|
|
|
# In order to spare double wrapping, we use:
|
|
preFixup = ''
|
|
makeWrapperArgs+=("''${qtWrapperArgs[@]}")
|
|
''
|
|
+ lib.optionalString (pyqt5.multimediaEnabled) ''
|
|
makeWrapperArgs+=(--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0")
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://picard.musicbrainz.org";
|
|
changelog = "https://picard.musicbrainz.org/changelog";
|
|
description = "Official MusicBrainz tagger";
|
|
mainProgram = "picard";
|
|
license = lib.licenses.gpl2Plus;
|
|
platforms = lib.platforms.all;
|
|
maintainers = with lib.maintainers; [ doronbehar ];
|
|
};
|
|
}
|