2e6bf42a22
There ver very many conflicts, basically all due to name -> pname+version. Fortunately, almost everything was auto-resolved by kdiff3, and for now I just fixed up a couple evaluation problems, as verified by the tarball job. There might be some fallback to these conflicts, but I believe it should be minimal. Hydra nixpkgs: ?compare=1538299
27 lines
703 B
Nix
27 lines
703 B
Nix
{ stdenv, fetchurl, autoreconfHook, pkgconfig, file, protobufc }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libivykis";
|
|
|
|
version = "0.42.3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/libivykis/${version}/ivykis-${version}.tar.gz";
|
|
sha256 = "1v0ajkm531v4zxzn2x90yb5ab81ssqv2y0fib24wbsggbkajbc69";
|
|
};
|
|
|
|
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 = [];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|