base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / li / libivykis / package.nix
blobaebc93f7e22402c121ba4f8de6c09f409dcd74f8
1 { lib, stdenv, fetchurl, autoreconfHook, pkg-config, file, protobufc }:
3 stdenv.mkDerivation rec {
4   pname = "libivykis";
6   version = "0.43.2";
8   src = fetchurl {
9     url = "mirror://sourceforge/libivykis/${version}/ivykis-${version}.tar.gz";
10     sha256 = "sha256-k+PpsjdpVDfNY9SqSKjZ39izm8KKGSpXcNETxP6Qme8=";
11   };
13   nativeBuildInputs = [ autoreconfHook pkg-config ];
14   buildInputs = [ file protobufc ];
16   meta = with lib; {
17     homepage = "https://libivykis.sourceforge.net/";
18     description = ''
19       A thin wrapper over various OS'es implementation of I/O readiness
20       notification facilities
21     '';
22     license = licenses.zlib;
23     maintainers = [ ];
24     platforms = platforms.linux;
25   };