summary refs log tree commit diff
path: root/pkgs/tools/audio
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-08-22 00:02:05 +0000
committerGitHub <noreply@github.com>2021-08-22 00:02:05 +0000
commitf6ad0961dac5985acc8b17c5418af1c138f6b2b8 (patch)
treeffc701306cc8e2f97d07f222f4dc0ce4d5622729 /pkgs/tools/audio
parent5e8c8603f03927c17379e858282e6606a885ac57 (diff)
parent17038ca16b7e510781fdd303b145862decce3e27 (diff)
downloadnixpkgs-f6ad0961dac5985acc8b17c5418af1c138f6b2b8.tar
nixpkgs-f6ad0961dac5985acc8b17c5418af1c138f6b2b8.tar.gz
nixpkgs-f6ad0961dac5985acc8b17c5418af1c138f6b2b8.tar.bz2
nixpkgs-f6ad0961dac5985acc8b17c5418af1c138f6b2b8.tar.lz
nixpkgs-f6ad0961dac5985acc8b17c5418af1c138f6b2b8.tar.xz
nixpkgs-f6ad0961dac5985acc8b17c5418af1c138f6b2b8.tar.zst
nixpkgs-f6ad0961dac5985acc8b17c5418af1c138f6b2b8.zip
Merge staging-next into staging
Diffstat (limited to 'pkgs/tools/audio')
-rw-r--r--pkgs/tools/audio/beets/default.nix12
1 files changed, 3 insertions, 9 deletions
diff --git a/pkgs/tools/audio/beets/default.nix b/pkgs/tools/audio/beets/default.nix
index 059174ae0a2..94f97e29af2 100644
--- a/pkgs/tools/audio/beets/default.nix
+++ b/pkgs/tools/audio/beets/default.nix
@@ -100,18 +100,13 @@ let
 
 in pythonPackages.buildPythonApplication rec {
   pname = "beets";
-  # While there is a stable version, 1.4.9, it is more than 1000 commits behind
-  # master and lacks many bug fixes and improvements[1]. Also important,
-  # unstable does not require bs1770gain[2].
-  # [1]: https://discourse.beets.io/t/forming-a-beets-core-team/639
-  # [2]: https://github.com/NixOS/nixpkgs/pull/90504
-  version = "unstable-2021-05-13";
+  version = "1.5.0";
 
   src = fetchFromGitHub {
     owner = "beetbox";
     repo = "beets";
-    rev = "1faa41f8c558d3f4415e5e48cf4513d50b466d34";
-    sha256 = "sha256-P0bV7WNqCYe9+3lqnFmAoRlb2asdsBUjzRMc24RngpU=";
+    rev = "v${version}";
+    sha256 = "sha256-yQMCJUwpjDDhPffBS6LUq6z4iT1VyFQE0R27XEbYXbY=";
   };
 
   propagatedBuildInputs = [
@@ -266,7 +261,6 @@ in pythonPackages.buildPythonApplication rec {
   passthru = {
     # FIXME: remove in favor of pkgs.beetsExternalPlugins
     externalPlugins = beetsExternalPlugins;
-    updateScript = unstableGitUpdater { url = "https://github.com/beetbox/beets"; };
   };
 
   meta = with lib; {