depot/third_party/nixpkgs/pkgs/development/guile-modules/guile-fibers/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

28 lines
728 B
Nix

{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, guile, texinfo }:
let
version = "1.0.0";
name = "guile-fibers-${version}";
in stdenv.mkDerivation {
inherit name;
src = fetchFromGitHub {
owner = "wingo";
repo = "fibers";
rev = "v${version}";
sha256 = "1r47m1m112kxf23xny99f0qkqsk6626iyc5jp7vzndfiyp5yskwi";
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [ guile texinfo ];
autoreconfPhase = "./autogen.sh";
meta = with lib; {
description = "Concurrent ML-like concurrency for Guile";
homepage = "https://github.com/wingo/fibers";
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ vyp ];
platforms = platforms.linux;
};
}