lol
at 17.09-beta 26 lines 734 B view raw
1{ stdenv, fetchurl, autoreconfHook, pkgconfig, file, protobufc }: 2 3stdenv.mkDerivation rec { 4 name = "libivykis-${version}"; 5 6 version = "0.41"; 7 8 src = fetchurl { 9 url = "mirror://sourceforge/libivykis/${version}/ivykis-${version}.tar.gz"; 10 sha256 = "1igk3svf36i5xgb6ipc507xpj6zjm4xi9j1j2cdqaachllwlb4rc"; 11 }; 12 13 nativeBuildInputs = [ autoreconfHook pkgconfig ]; 14 buildInputs = [ file protobufc ]; 15 16 meta = with stdenv.lib; { 17 homepage = http://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 = [ maintainers.rickynils ]; 24 platforms = platforms.linux; 25 }; 26}