3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/audio/mpc/default.nix

44 lines
1.1 KiB
Nix
Raw Normal View History

2021-02-12 11:32:25 +00:00
{ lib
, stdenv
, fetchFromGitHub
, fetchpatch
2021-02-12 11:32:25 +00:00
, meson
, ninja
, pkg-config
, libmpdclient
, sphinx
, libiconv
}:
2013-09-23 14:41:04 +01:00
stdenv.mkDerivation rec {
pname = "mpc";
2021-12-09 10:18:14 +00:00
version = "0.34";
2013-09-23 14:41:04 +01:00
src = fetchFromGitHub {
owner = "MusicPlayerDaemon";
repo = "mpc";
rev = "v${version}";
2021-12-09 10:18:14 +00:00
sha256 = "sha256-2FjYBfak0IjibuU+CNQ0y9Ei8hTZhynS/BK2DNerhVw=";
2013-09-23 14:41:04 +01:00
};
patches = [
# fix the build with meson 0.60 (https://github.com/MusicPlayerDaemon/mpc/pull/76)
(fetchpatch {
url = "https://github.com/MusicPlayerDaemon/mpc/commit/b656ca4b6c2a0d5b6cebd7f7daa679352f664e0e.patch";
sha256 = "sha256-fjjSlCKxgkz7Em08CaK7+JAzl8YTzLcpGGMz2HJlsVw=";
})
];
2021-02-12 11:32:25 +00:00
buildInputs = [ libmpdclient ] ++ lib.optionals stdenv.isDarwin [ libiconv ];
nativeBuildInputs = [ meson ninja pkg-config sphinx ];
meta = with lib; {
2013-09-23 14:41:04 +01:00
description = "A minimalist command line interface to MPD";
homepage = "https://www.musicpd.org/clients/mpc/";
2015-07-19 16:52:01 +01:00
license = licenses.gpl2;
2022-01-23 02:33:16 +00:00
maintainers = with maintainers; [ algorith ncfavier ];
2015-07-19 16:52:01 +01:00
platforms = with platforms; linux ++ darwin;
2013-09-23 14:41:04 +01:00
};
2014-01-25 14:19:36 +00:00
}