nixpkgs/pkgs/applications/audio/mpc/default.nix

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

64 lines
1.4 KiB
Nix
Raw Normal View History

2021-02-12 11:32:25 +00:00
{ lib
, stdenv
, fetchFromGitHub
, fetchpatch
2022-01-25 01:58:20 +00:00
, installShellFiles
, libiconv
, libmpdclient
2021-02-12 11:32:25 +00:00
, meson
, ninja
, pkg-config
, sphinx
}:
2013-09-23 13:41:04 +00:00
stdenv.mkDerivation rec {
pname = "mpc";
2021-12-09 10:18:14 +00:00
version = "0.34";
2013-09-23 13:41:04 +00:00
src = fetchFromGitHub {
owner = "MusicPlayerDaemon";
2022-01-25 01:58:20 +00:00
repo = pname;
rev = "v${version}";
hash = "sha256-2FjYBfak0IjibuU+CNQ0y9Ei8hTZhynS/BK2DNerhVw=";
2013-09-23 13:41:04 +00: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=";
})
];
buildInputs = [
libmpdclient
]
++ lib.optionals stdenv.isDarwin [ libiconv ];
nativeBuildInputs = [
2022-01-25 01:58:20 +00:00
installShellFiles
meson
ninja
pkg-config
sphinx
];
2022-01-25 01:58:20 +00:00
postInstall = ''
installShellCompletion --cmd mpc --bash $out/share/doc/mpc/contrib/mpc-completion.bash
'';
postFixup = ''
rm $out/share/doc/mpc/contrib/mpc-completion.bash
'';
meta = with lib; {
homepage = "https://www.musicpd.org/clients/mpc/";
description = "A minimalist command line interface to MPD";
2022-01-25 01:58:20 +00:00
changelog = "https://raw.githubusercontent.com/MusicPlayerDaemon/mpc/v${version}/NEWS";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ AndersonTorres ];
platforms = with platforms; unix;
mainProgram = "mpc";
2013-09-23 13:41:04 +00:00
};
2014-01-25 14:19:36 +00:00
}