1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 07:00:43 +00:00
nixpkgs/pkgs/applications/audio/mpc/default.nix

26 lines
763 B
Nix
Raw Normal View History

2019-11-29 09:20:00 +00:00
{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig, mpd_clientlib, sphinx, libiconv }:
2013-09-23 14:41:04 +01:00
stdenv.mkDerivation rec {
pname = "mpc";
2019-11-28 11:53:40 +00:00
version = "0.33";
2013-09-23 14:41:04 +01:00
src = fetchFromGitHub {
owner = "MusicPlayerDaemon";
repo = "mpc";
rev = "v${version}";
2019-11-28 11:53:40 +00:00
sha256 = "1qbi0i9cq54rj8z2kapk8x8g1jkw2jz781niwb9i7kw4xfhvy5zx";
2013-09-23 14:41:04 +01:00
};
2019-11-29 09:20:00 +00:00
buildInputs = [ mpd_clientlib ] ++ stdenv.lib.optionals stdenv.isDarwin [ libiconv ];
2019-06-06 10:41:13 +01:00
nativeBuildInputs = [ meson ninja pkgconfig sphinx ];
2015-07-19 16:52:01 +01:00
meta = with stdenv.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;
maintainers = with maintainers; [ algorith ];
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
}