9b13d64417
Semi-automatic update. These checks were performed: - built on NixOS - found 0.42.1 with grep in /nix/store/npgsv4dlpgkbm8r2rz1wqns7ispcq4na-libivykis-0.42.1 - found 0.42.1 in filename of file in /nix/store/npgsv4dlpgkbm8r2rz1wqns7ispcq4na-libivykis-0.42.1 cc "@rickynils"
27 lines
736 B
Nix
27 lines
736 B
Nix
{ stdenv, fetchurl, autoreconfHook, pkgconfig, file, protobufc }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libivykis-${version}";
|
|
|
|
version = "0.42.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/libivykis/${version}/ivykis-${version}.tar.gz";
|
|
sha256 = "0c90cfpxipw2m8i3ajr7vy7lb8gvcz2kh5n8sd542zphr4na8whq";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
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 = [ maintainers.rickynils ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|