beets: 2.5.0 -> 2.5.1

This commit is contained in:
Doron Behar
2025-10-15 15:50:37 +03:00
parent 6af7fdb073
commit 05df37c9bd
2 changed files with 10 additions and 2 deletions
+8
View File
@@ -112,6 +112,8 @@ python3Packages.buildPythonApplication {
gobject-introspection
sphinxHook
python3Packages.pydata-sphinx-theme
python3Packages.sphinx-design
python3Packages.sphinx-copybutton
]
++ extraNativeBuildInputs;
@@ -132,6 +134,12 @@ python3Packages.buildPythonApplication {
"html"
"man"
];
# Causes an installManPage error. Not clear why this directory gets generated
# with the manpages. The same directory is observed correctly in
# $doc/share/doc/beets-${version}/html
preInstallSphinx = ''
rm -r .sphinx/man/man/_sphinx_design_static
'';
postInstall = ''
mkdir -p $out/share/zsh/site-functions
+2 -2
View File
@@ -31,12 +31,12 @@ lib.makeExtensible (
beets-stable = callPackage ./common.nix rec {
inherit python3Packages extraPatches;
version = "2.5.0";
version = "2.5.1";
src = fetchFromGitHub {
owner = "beetbox";
repo = "beets";
tag = "v${version}";
hash = "sha256-YZvS9oB+v+48i1avQcs6ClnYz4aMqJQ2e6cBiZ4ULb0=";
hash = "sha256-H3jcEHyK13+RHVlV4zp+8M3LZ0Jc2FdmAbLpekGozLA=";
};
};