nixpkgs/pkgs/tools/misc/mpdscribble/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

51 lines
1.2 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, fetchurl
2022-12-07 16:11:29 +00:00
, fetchpatch
, pkg-config
, meson
, ninja
, boost
, curl
, libgcrypt
, libmpdclient
, systemd
}:
2015-03-14 10:47:11 +00:00
stdenv.mkDerivation rec {
pname = "mpdscribble";
2022-03-18 12:38:17 +00:00
version = "0.24";
2015-03-14 10:47:11 +00:00
src = fetchurl {
url = "https://www.musicpd.org/download/mpdscribble/${version}/mpdscribble-${version}.tar.xz";
2022-03-18 12:38:17 +00:00
sha256 = "sha256-9rTLp0izuH5wUnC0kjyOI+lMLgD+3VC+sUaNvi+yqOc=";
2015-03-14 10:47:11 +00:00
};
2022-12-07 16:11:29 +00:00
# Fix build issue on darwin; to be removed after the next release
patches = [(fetchpatch {
name = "remove-empty-static-lib.patch";
url = "https://github.com/MusicPlayerDaemon/mpdscribble/commit/0dbcea25c81f3fdc608f71ef71a9784679fee17f.patch";
sha256 = "sha256-3wLfQvbwx+OFrCl5vMV7Zps4e4iEYFhqPiVCo5hDqgw=";
})];
postPatch = ''
sed '1i#include <ctime>' -i src/Log.cxx # gcc12
'';
nativeBuildInputs = [ pkg-config meson ninja ];
buildInputs = [
libmpdclient
curl
boost
libgcrypt
2022-12-07 16:11:29 +00:00
] ++ lib.optional stdenv.isLinux systemd;
2015-03-14 10:47:11 +00:00
meta = with lib; {
description = "A MPD client which submits info about tracks being played to a scrobbler";
homepage = "https://www.musicpd.org/clients/mpdscribble/";
license = licenses.gpl2Plus;
2020-09-09 13:29:05 +00:00
maintainers = [ maintainers.sohalt ];
2022-12-07 16:11:29 +00:00
platforms = platforms.unix;
2015-03-14 10:47:11 +00:00
};
}