nixpkgs/pkgs/development/guile-modules/guile-fibers/default.nix

29 lines
726 B
Nix
Raw Normal View History

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