461ab720e5
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/libivykis/versions. These checks were done: - built on NixOS - 0 of 0 passed binary check by having a zero exit code. - 0 of 0 passed binary check by having the new version present in output. - found 0.42.2 with grep in /nix/store/mpzbl2ic44k0zb14i6vh1jnfgjw991fm-libivykis-0.42.2 - directory tree listing: https://gist.github.com/e262298d600bcbe234280fd968536833 - du listing: https://gist.github.com/b1a6d5fe802c7441fc1f194f04f6b1b5
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.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/libivykis/${version}/ivykis-${version}.tar.gz";
|
|
sha256 = "14vb613j4xas70wr7g5z9c9z871xhayd4zliywwf88myd41jcsw8";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|