mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
39 lines
991 B
Nix
39 lines
991 B
Nix
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, glib, ncurses
|
|
, mpd_clientlib, gettext, boost
|
|
, pcreSupport ? false
|
|
, pcre ? null
|
|
}:
|
|
|
|
with lib;
|
|
|
|
assert pcreSupport -> pcre != null;
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ncmpc";
|
|
version = "0.42";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "MusicPlayerDaemon";
|
|
repo = "ncmpc";
|
|
rev = "v${version}";
|
|
sha256 = "1c21sbdm6pp3kwhnzc7c6ksna7madvsmfa7j91as2g8485symqv2";
|
|
};
|
|
|
|
buildInputs = [ glib ncurses mpd_clientlib boost ]
|
|
++ optional pcreSupport pcre;
|
|
nativeBuildInputs = [ meson ninja pkg-config gettext ];
|
|
|
|
mesonFlags = [
|
|
"-Dlirc=disabled"
|
|
"-Ddocumentation=disabled"
|
|
] ++ optional (!pcreSupport) "-Dregex=disabled";
|
|
|
|
meta = with 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 ];
|
|
};
|
|
}
|