about summary refs log tree commit diff
path: root/pkgs/applications/audio/listenbrainz-mpd
diff options
context:
space:
mode:
authorSefa Eyeoglu <contact@scrumplex.net>2023-03-13 13:37:49 +0100
committerSefa Eyeoglu <contact@scrumplex.net>2023-03-13 13:37:49 +0100
commit581c92f09e846f79e5cd6ac5ca3959d85aa26b44 (patch)
tree477b8b062cca97e1dcdadd12bb3d912229ca8fa1 /pkgs/applications/audio/listenbrainz-mpd
parent5571b940ae7a5c7e01d4e49c05aed0116c3f5146 (diff)
listenbrainz-mpd: 2.0.2 -> 2.1.0
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
Diffstat (limited to 'pkgs/applications/audio/listenbrainz-mpd')
-rw-r--r--pkgs/applications/audio/listenbrainz-mpd/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/applications/audio/listenbrainz-mpd/default.nix b/pkgs/applications/audio/listenbrainz-mpd/default.nix
index 04216bdf09f6f..b83150985499f 100644
--- a/pkgs/applications/audio/listenbrainz-mpd/default.nix
+++ b/pkgs/applications/audio/listenbrainz-mpd/default.nix
@@ -5,25 +5,26 @@
 , stdenv
 , openssl
 , libiconv
+, sqlite
 , Security }:
 
 rustPlatform.buildRustPackage rec {
   pname = "listenbrainz-mpd";
-  version = "2.0.2";
+  version = "2.1.0";
 
   src = fetchFromGitea {
     domain = "codeberg.org";
     owner = "elomatreb";
     repo = "listenbrainz-mpd";
     rev = "v${version}";
-    hash = "sha256-DO7YUqaJZyVWjiAZ9WIVNTTvOU0qdsI2ct7aT/6O5dQ=";
+    hash = "sha256-AalZTlizaw93KlVffFDjGNoKkCHUFQTiElZgJo64shs=";
   };
 
-  cargoHash = "sha256-MiAalxe0drRHrST3maVvi8GM2y3d0z4Zl7R7Zx8VjEM=";
+  cargoHash = "sha256-n24P56ZrF8qEpM45uIFr7bJhlzuAexNr6siEsF219uA=";
 
   nativeBuildInputs = [ pkg-config ];
 
-  buildInputs = if stdenv.isDarwin then [ libiconv Security ] else [ openssl ];
+  buildInputs = [ sqlite ] ++ (if stdenv.isDarwin then [ libiconv Security ] else [ openssl ]);
 
   meta = with lib; {
     homepage = "https://codeberg.org/elomatreb/listenbrainz-mpd";