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

32 lines
849 B
Nix
Raw Normal View History

2017-10-02 18:23:56 +00:00
{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig, glib, ncurses
2018-11-22 12:33:16 +00:00
, mpd_clientlib, gettext, boost }:
2014-03-25 14:45:24 +00:00
2017-11-03 23:43:27 +00:00
stdenv.mkDerivation rec {
pname = "ncmpc";
version = "0.34";
2014-03-25 14:45:24 +00:00
src = fetchFromGitHub {
owner = "MusicPlayerDaemon";
repo = "ncmpc";
rev = "v${version}";
sha256 = "0ffby37qdg251c1w0vl6rmd13akbydnf12468z4vrl0ybwfd7fc4";
2014-03-25 14:45:24 +00:00
};
2018-11-22 12:33:16 +00:00
buildInputs = [ glib ncurses mpd_clientlib boost ];
2017-10-02 18:23:56 +00:00
nativeBuildInputs = [ meson ninja pkgconfig gettext ];
mesonFlags = [
"-Dlirc=disabled"
"-Dregex=disabled"
"-Ddocumentation=disabled"
];
2014-03-25 14:45:24 +00:00
meta = with stdenv.lib; {
description = "Curses-based interface for MPD (music player daemon)";
homepage = https://www.musicpd.org/clients/ncmpc/;
2014-03-25 14:45:24 +00:00
license = licenses.gpl2Plus;
platforms = platforms.all;
2017-10-02 18:23:56 +00:00
maintainers = with maintainers; [ fpletz ];
2014-03-25 14:45:24 +00:00
};
}