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

24 lines
705 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, glib, ncurses, mpd_clientlib, libintlOrEmpty }:
2014-03-25 10:45:24 -04:00
stdenv.mkDerivation rec {
version = "0.21";
name = "ncmpc-${version}";
src = fetchurl {
url = "http://www.musicpd.org/download/ncmpc/0/ncmpc-${version}.tar.bz2";
sha256 = "648e846e305c867cb937dcb467393c2f5a30bf460bdf77b63de7af69fba1fd07";
};
buildInputs = [ pkgconfig glib ncurses mpd_clientlib ]
++ libintlOrEmpty;
2014-03-25 10:45:24 -04:00
meta = with stdenv.lib; {
description = "Curses-based interface for MPD (music player daemon)";
homepage = http://www.musicpd.org/clients/ncmpc/;
license = licenses.gpl2Plus;
2014-03-27 16:32:54 -04:00
maintainers = with maintainers; [ _1126 ];
2014-03-25 10:45:24 -04:00
platforms = platforms.all;
};
}