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