mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 10:43:27 +00:00
245f5ec322
New release fixing a crash that affects nixos due to the build without pcre. https://github.com/MusicPlayerDaemon/ncmpc/releases/tag/v0.36
32 lines
849 B
Nix
32 lines
849 B
Nix
{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig, glib, ncurses
|
|
, mpd_clientlib, gettext, boost }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ncmpc";
|
|
version = "0.36";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "MusicPlayerDaemon";
|
|
repo = "ncmpc";
|
|
rev = "v${version}";
|
|
sha256 = "1ssmk1p43gjhcqi86sh6b7csqpwwpf3hs32cmnylv6pmbcwbs69h";
|
|
};
|
|
|
|
buildInputs = [ glib ncurses mpd_clientlib boost ];
|
|
nativeBuildInputs = [ meson ninja pkgconfig gettext ];
|
|
|
|
mesonFlags = [
|
|
"-Dlirc=disabled"
|
|
"-Dregex=disabled"
|
|
"-Ddocumentation=disabled"
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Curses-based interface for MPD (music player daemon)";
|
|
homepage = https://www.musicpd.org/clients/ncmpc/;
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ fpletz ];
|
|
};
|
|
}
|