depot/third_party/nixpkgs/pkgs/by-name/gu/guile-fibers/package.nix

48 lines
821 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
autoreconfHook,
guile,
libevent,
pkg-config,
texinfo,
}:
stdenv.mkDerivation rec {
pname = "guile-fibers";
version = "1.3.1";
src = fetchFromGitHub {
owner = "wingo";
repo = "fibers";
rev = "v${version}";
hash = "sha256-jJKA5JEHsmqQ/IKb1aNmOtoVaGKNjcgTKyo5VCiJbXM=";
};
strictDeps = true;
nativeBuildInputs = [
autoreconfHook
guile
pkg-config
texinfo # for makeinfo
];
buildInputs = [
guile
libevent
];
makeFlags = [
"GUILE_AUTO_COMPILE=0"
];
meta = with lib; {
homepage = "https://github.com/wingo/fibers";
description = "Concurrent ML-like concurrency for Guile";
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ vyp ];
platforms = guile.meta.platforms;
};
}