Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at fix-function-merge 23 lines 630 B view raw
1{ lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook }: 2 3stdenv.mkDerivation rec { 4 pname = "libuev"; 5 version = "2.4.1"; 6 7 src = fetchFromGitHub { 8 owner = "troglobit"; 9 repo = "libuev"; 10 rev = "v${version}"; 11 hash = "sha256-x1Sk7IuhlBQPFL7Rq4tmEanBxI/WaQ2L5fpUyEWOoi8="; 12 }; 13 14 nativeBuildInputs = [ pkg-config autoreconfHook ]; 15 16 meta = with lib; { 17 description = "Lightweight event loop library for Linux epoll() family APIs"; 18 homepage = "https://codedocs.xyz/troglobit/libuev/"; 19 license = licenses.mit; 20 platforms = platforms.linux; 21 maintainers = with maintainers; [ vifino ]; 22 }; 23}