mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01: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.
35 lines
804 B
Nix
35 lines
804 B
Nix
{ lib, stdenv, fetchFromGitHub, pkg-config, xorgproto, libxcb
|
|
, autoreconfHook, json-glib, gtk-doc, which
|
|
, gobject-introspection
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "i3ipc-glib";
|
|
version = "1.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "acrisci";
|
|
repo = "i3ipc-glib";
|
|
rev = "v${version}";
|
|
sha256 = "01fzvrbnzcwx0vxw29igfpza9zwzp2s7msmzb92v01z0rz0y5m0p";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook which pkg-config ];
|
|
|
|
buildInputs = [ libxcb json-glib gtk-doc xorgproto gobject-introspection ];
|
|
|
|
|
|
preAutoreconf = ''
|
|
gtkdocize
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A C interface library to i3wm";
|
|
homepage = "https://github.com/acrisci/i3ipc-glib";
|
|
maintainers = with maintainers; [teto];
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|