nixpkgs/pkgs/development/libraries/libivykis/default.nix
Jonathan Ringer 9bb3fccb5b treewide: pkgs.pkgconfig -> pkgs.pkg-config, move pkgconfig to alias.nix
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.
2021-01-19 01:16:25 -08:00

27 lines
707 B
Nix

{ stdenv, fetchurl, autoreconfHook, pkg-config, file, protobufc }:
stdenv.mkDerivation rec {
pname = "libivykis";
version = "0.42.4";
src = fetchurl {
url = "mirror://sourceforge/libivykis/${version}/ivykis-${version}.tar.gz";
sha256 = "0abi0rc3wnncvr68hy6rmzp96x6napd7fs1mff20dr8lb0jyvy3f";
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [ file protobufc ];
meta = with stdenv.lib; {
homepage = "http://libivykis.sourceforge.net/";
description = ''
A thin wrapper over various OS'es implementation of I/O readiness
notification facilities
'';
license = licenses.zlib;
maintainers = [];
platforms = platforms.linux;
};
}