guile-fibers: init at 1.0.0
This commit is contained in:
parent
c8e7aab0c8
commit
6aa0307145
|
@ -0,0 +1,27 @@
|
|||
{ 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";
|
||||
};
|
||||
|
||||
buildInputs = [ autoreconfHook pkgconfig 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;
|
||||
};
|
||||
}
|
|
@ -6662,6 +6662,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;
|
||||
|
|
Loading…
Reference in New Issue