2016-01-17 23:04:40 +00:00
|
|
|
{ stdenv, fetchurl, autoreconfHook, pkgconfig, file, protobufc }:
|
2014-07-07 17:07:06 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "libivykis-${version}";
|
|
|
|
|
2018-02-27 04:41:39 +00:00
|
|
|
version = "0.42.1";
|
2014-07-07 17:07:06 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/libivykis/${version}/ivykis-${version}.tar.gz";
|
2018-02-27 04:41:39 +00:00
|
|
|
sha256 = "0c90cfpxipw2m8i3ajr7vy7lb8gvcz2kh5n8sd542zphr4na8whq";
|
2014-07-07 17:07:06 +01:00
|
|
|
};
|
|
|
|
|
2016-11-09 20:00:48 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
|
|
buildInputs = [ file protobufc ];
|
2014-07-07 17:07:06 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2017-08-01 21:03:30 +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;
|
|
|
|
maintainers = [ maintainers.rickynils ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|