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.
24 lines
659 B
Nix
24 lines
659 B
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, pkg-config }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libfixposix";
|
|
version="0.4.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sionescu";
|
|
repo = "libfixposix";
|
|
rev = "v${version}";
|
|
sha256 = "1x4q6yspi5g2s98vq4qszw4z3zjgk9l5zs8471w4d4cs6l97w08j";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://github.com/sionescu/libfixposix";
|
|
description = "Thin wrapper over POSIX syscalls and some replacement functionality";
|
|
license = licenses.boost;
|
|
maintainers = with maintainers; [ orivej raskin ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|