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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
722 B
Nix
Raw Normal View History

2021-04-15 14:50:41 +00:00
{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
, guile
, pkg-config
, texinfo
}:
2017-09-24 10:01:47 +00:00
2021-04-15 14:50:41 +00:00
stdenv.mkDerivation rec {
pname = "guile-fibers";
2022-07-29 11:39:28 +00:00
version = "1.1.1";
2017-09-24 10:01:47 +00:00
src = fetchFromGitHub {
owner = "wingo";
repo = "fibers";
rev = "v${version}";
2022-07-29 11:39:28 +00:00
hash = "sha256-jEY6i+uTqDkXZKdpK+/GRLlK7aJxkRneVZQJIE4bhlI=";
2017-09-24 10:01:47 +00:00
};
2021-04-15 14:50:41 +00:00
nativeBuildInputs = [
autoreconfHook
pkg-config
];
buildInputs = [
guile
texinfo
];
2017-09-24 10:01:47 +00:00
autoreconfPhase = "./autogen.sh";
meta = with lib; {
homepage = "https://github.com/wingo/fibers";
2021-04-15 14:50:41 +00:00
description = "Concurrent ML-like concurrency for Guile";
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
};
}