ncmcp: New expression

This commit is contained in:
_1126 2014-03-25 15:45:24 +01:00 committed by Moritz Ulrich
parent cca30b37f8
commit 34301c89e1
3 changed files with 25 additions and 0 deletions

View file

@ -4,6 +4,7 @@
/* Add your name and email address here. Keep the list
alphabetically sorted. */
_1126 = "Christian Lask <mail@elfsechsundzwanzig.de>";
aforemny = "Alexander Foremny <alexanderforemny@googlemail.com>";
akc = "Anders Claesson <akc@akc.is>";
algorith = "Dries Van Daele <dries_van_daele@telenet.be>";

View file

@ -0,0 +1,22 @@
{ stdenv, fetchurl, pkgconfig, glib, ncurses, mpd_clientlib }:
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 ];
meta = with stdenv.lib; {
description = "Curses-based interface for MPD (music player daemon)";
homepage = http://www.musicpd.org/clients/ncmpc/;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ 1126 ];
platforms = platforms.all;
};
}

View file

@ -8592,6 +8592,8 @@ let
mpc_cli = callPackage ../applications/audio/mpc { };
ncmpc = callPackage ../applications/audio/ncmpc { };
ncmpcpp = callPackage ../applications/audio/ncmpcpp { };
normalize = callPackage ../applications/audio/normalize { };