mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-24 13:53:24 +00:00
Merge pull request #29727 from vyp/init/guile-fibers
guile-fibers: init at 1.0.0
This commit is contained in:
commit
50946a790e
28
pkgs/development/guile-modules/guile-fibers/default.nix
Normal file
28
pkgs/development/guile-modules/guile-fibers/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user