Merge pull request #29727 from vyp/init/guile-fibers

guile-fibers: init at 1.0.0
This commit is contained in:
Jörg Thalheim 2017-09-24 11:32:16 +01:00 committed by GitHub
commit 50946a790e
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,28 @@
{ 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";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ guile texinfo ];
autoreconfPhase = "./autogen.sh";
meta = with stdenv.lib; {
description = "Concurrent ML-like concurrency for Guile";
homepage = https://github.com/wingo/fibers;
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ vyp ];
platforms = platforms.all;
};
}

View File

@ -6708,6 +6708,8 @@ with pkgs;
guileCairo = callPackage ../development/guile-modules/guile-cairo { };
guile-fibers = callPackage ../development/guile-modules/guile-fibers { };
guileGnome = callPackage ../development/guile-modules/guile-gnome {
gconf = gnome2.GConf;
inherit (gnome2) gnome_vfs libglade libgnome libgnomecanvas libgnomeui;