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.
28 lines
761 B
Nix
28 lines
761 B
Nix
{ stdenv, lib, fetchFromGitHub, libtool, pkg-config, perl, ncurses }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "unibilium-unstable";
|
|
|
|
version = "20190811";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "neovim";
|
|
repo = "unibilium";
|
|
rev = "92d929fabaf94ea4feb48149bbc3bbea77c4fab0";
|
|
sha256 = "1l8p3fpdymba62x1f5d990v72z3m5f5g2yf505g0rlf2ysc5r1di";
|
|
};
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ]
|
|
++ stdenv.lib.optional stdenv.isDarwin "LIBTOOL=${libtool}/bin/libtool";
|
|
|
|
nativeBuildInputs = [ pkg-config perl ];
|
|
buildInputs = [ libtool ncurses ];
|
|
|
|
meta = with lib; {
|
|
description = "A very basic terminfo library";
|
|
license = licenses.lgpl3Plus;
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
maintainers = with maintainers; [ pSub ];
|
|
};
|
|
}
|