Skip to content

Commit

Permalink
Merge pull request #4574 from fpletz/package/ncmpcppBeta
Browse files Browse the repository at this point in the history
New package: ncmpcppBeta
  • Loading branch information
madjar committed Oct 21, 2014
2 parents 80e8499 + a691858 commit 1ef52d5
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/maintainers.nix
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
ertes = "Ertugrul Söylemez <[email protected]>";
falsifian = "James Cook <[email protected]>";
flosse = "Markus Kohlhase <[email protected]>";
fpletz = "Franz Pletz <[email protected]>";
ftrvxmtrx = "Siarhei Zirukin <[email protected]>";
funfunctor = "Edward O'Callaghan <[email protected]>";
fuuzetsu = "Mateusz Kowalczyk <[email protected]>";
Expand Down
30 changes: 30 additions & 0 deletions pkgs/applications/audio/ncmpcpp/beta.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{ stdenv, fetchurl, ncurses, curl, taglib, fftw, mpd_clientlib, pkgconfig
, boost, readline, libiconvOrEmpty }:

stdenv.mkDerivation rec {
version = "0.6_beta5";
name = "ncmpcpp-${version}";

src = fetchurl {
url = "http://ncmpcpp.rybczak.net/stable/ncmpcpp-${version}.tar.bz2";
sha256 = "05h4mahnh39y9ab333whsgspj5mnbdkqfssgfi4r0zf1fvjwlwj6";
};

buildInputs = [ ncurses curl taglib fftw mpd_clientlib pkgconfig boost readline ]
++ libiconvOrEmpty;

configureFlags = [
"BOOST_LIB_SUFFIX="
];

enableParallelBuilding = true;

meta = with stdenv.lib; {
description = "Curses-based interface for MPD (music player daemon)";
homepage = http://unkart.ovh.org/ncmpcpp/;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ fpletz ];
platforms = platforms.all;
};
}

2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9860,6 +9860,8 @@ let

ncmpcpp = callPackage ../applications/audio/ncmpcpp { };

ncmpcppBeta = callPackage ../applications/audio/ncmpcpp/beta.nix { };

normalize = callPackage ../applications/audio/normalize { };

mplayer = callPackage ../applications/video/mplayer {
Expand Down

0 comments on commit 1ef52d5

Please sign in to comment.