mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-25 20:34:52 +03:00
ncmpcpp: fix build on darwin
* add libiconvOrEmpty to build inputs
This commit is contained in:
parent
f01588653c
commit
7ccf7c1529
@ -1,4 +1,5 @@
|
|||||||
{stdenv, fetchurl, ncurses, curl, taglib, fftw, mpd_clientlib, pkgconfig}:
|
{ stdenv, fetchurl, ncurses, curl, taglib, fftw, mpd_clientlib, pkgconfig
|
||||||
|
, libiconvOrEmpty }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "0.5.10";
|
version = "0.5.10";
|
||||||
@ -9,14 +10,15 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "ff6d5376a2d9caba6f5bb78e68af77cefbdb2f04cd256f738e39f8ac9a79a4a8";
|
sha256 = "ff6d5376a2d9caba6f5bb78e68af77cefbdb2f04cd256f738e39f8ac9a79a4a8";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ ncurses curl taglib fftw mpd_clientlib pkgconfig ];
|
buildInputs = [ ncurses curl taglib fftw mpd_clientlib pkgconfig ]
|
||||||
|
++ libiconvOrEmpty;
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "Curses-based interface for MPD (music player daemon)";
|
description = "Curses-based interface for MPD (music player daemon)";
|
||||||
homepage = http://unkart.ovh.org/ncmpcpp/;
|
homepage = http://unkart.ovh.org/ncmpcpp/;
|
||||||
license = "GPLv2+";
|
license = licenses.gpl2Plus;
|
||||||
maintainers = [ stdenv.lib.maintainers.mornfall ];
|
maintainers = with maintainers; [ lovek323 mornfall ];
|
||||||
platforms = stdenv.lib.platforms.all;
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user