guile-fibers 1.2.0 -> 1.3.1 https://github.com/wingo/fibers/releases attrpath: guile-fibers Checking auto update branch... No auto update branch exists Old version 1.2.0" not present in master derivation file with contents: { lib , stdenv , fetchFromGitHub , autoreconfHook , guile , pkg-config , texinfo }: stdenv.mkDerivation rec { pname = "guile-fibers"; version = "1.3.1"; src = fetchFromGitHub { owner = "wingo"; repo = "fibers"; rev = "v${version}"; hash = "sha256-jJKA5JEHsmqQ/IKb1aNmOtoVaGKNjcgTKyo5VCiJbXM="; }; nativeBuildInputs = [ autoreconfHook pkg-config ]; buildInputs = [ guile texinfo ]; autoreconfPhase = "./autogen.sh"; meta = with lib; { homepage = "https://github.com/wingo/fibers"; description = "Concurrent ML-like concurrency for Guile"; license = licenses.lgpl3Plus; maintainers = with maintainers; [ vyp ]; platforms = platforms.linux; }; }