2021-01-18 22:50:56 -08:00
|
|
|
{ stdenv, fetchurl, autoreconfHook, pkg-config, file, protobufc }:
|
2014-07-07 09:07:06 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "libivykis";
|
2014-07-07 09:07:06 -07:00
|
|
|
|
2019-09-27 08:43:54 -07:00
|
|
|
version = "0.42.4";
|
2014-07-07 09:07:06 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/libivykis/${version}/ivykis-${version}.tar.gz";
|
2019-09-27 08:43:54 -07:00
|
|
|
sha256 = "0abi0rc3wnncvr68hy6rmzp96x6napd7fs1mff20dr8lb0jyvy3f";
|
2014-07-07 09:07:06 -07:00
|
|
|
};
|
|
|
|
|
2021-01-18 22:50:56 -08:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
2016-11-09 12:00:48 -08:00
|
|
|
buildInputs = [ file protobufc ];
|
2014-07-07 09:07:06 -07:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://libivykis.sourceforge.net/";
|
2014-07-07 09:07:06 -07:00
|
|
|
description = ''
|
|
|
|
A thin wrapper over various OS'es implementation of I/O readiness
|
|
|
|
notification facilities
|
|
|
|
'';
|
|
|
|
license = licenses.zlib;
|
2019-08-20 06:24:01 -07:00
|
|
|
maintainers = [];
|
2014-07-07 09:07:06 -07:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|