2017-09-24 12:01:47 +02:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, 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";
|
|
|
|
};
|
|
|
|
|
2017-09-24 12:30:43 +02:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
|
|
buildInputs = [ guile texinfo ];
|
2017-09-24 12:01:47 +02:00
|
|
|
|
|
|
|
autoreconfPhase = "./autogen.sh";
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Concurrent ML-like concurrency for Guile";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/wingo/fibers";
|
2017-09-24 12:01:47 +02:00
|
|
|
license = licenses.lgpl3Plus;
|
|
|
|
maintainers = with maintainers; [ vyp ];
|
2018-03-18 22:24:45 +01:00
|
|
|
platforms = platforms.linux;
|
2017-09-24 12:01:47 +02:00
|
|
|
};
|
|
|
|
}
|