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

26 lines
698 B
Nix
Raw Normal View History

2019-06-06 11:41:13 +02:00
{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig, mpd_clientlib, sphinx }:
2013-09-23 15:41:04 +02:00
stdenv.mkDerivation rec {
pname = "mpc";
2019-06-06 11:41:13 +02:00
version = "0.31";
2013-09-23 15:41:04 +02:00
src = fetchFromGitHub {
owner = "MusicPlayerDaemon";
repo = "mpc";
rev = "v${version}";
2019-06-06 11:41:13 +02:00
sha256 = "06wn5f24bgkqmhh2p8rbizmqibzqr4x1q7c6zl0pfq7mdy49g5ds";
2013-09-23 15:41:04 +02:00
};
buildInputs = [ mpd_clientlib ];
2019-06-06 11:41:13 +02:00
nativeBuildInputs = [ meson ninja pkgconfig sphinx ];
2015-07-19 17:52:01 +02:00
meta = with stdenv.lib; {
2013-09-23 15:41:04 +02:00
description = "A minimalist command line interface to MPD";
homepage = https://www.musicpd.org/clients/mpc/;
2015-07-19 17:52:01 +02:00
license = licenses.gpl2;
maintainers = with maintainers; [ algorith ];
2015-07-19 17:52:01 +02:00
platforms = with platforms; linux ++ darwin;
2013-09-23 15:41:04 +02:00
};
2014-01-25 15:19:36 +01:00
}