Merge pull request #258104 from grxnola/package/guile-goblins

guile-goblins: init at 0.11.0
This commit is contained in:
Weijia Wang 2023-09-30 14:18:30 +02:00 committed by GitHub
commit 40e036a925
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 39 additions and 0 deletions

View File

@ -6616,6 +6616,11 @@
githubId = 11212268;
name = "gruve-p";
};
grxnola = {
github = "grxnola";
githubId = 49906709;
name = "grxnola";
};
gschwartz = {
email = "gsch@pennmedicine.upenn.edu";
github = "GregorySchwartz";

View File

@ -0,0 +1,34 @@
{ lib
, stdenv
, fetchurl
, guile
, guile-fibers
, guile-gcrypt
, texinfo
, pkg-config
}:
stdenv.mkDerivation rec {
pname = "guile-goblins";
version = "0.11.0";
src = fetchurl {
url = "https://spritely.institute/files/releases/guile-goblins/guile-goblins-${version}.tar.gz";
hash = "sha256-1FD35xvayqC04oPdgts08DJl6PVnhc9K/Dr+NYtxhMU=";
};
strictDeps = true;
nativeBuildInputs = [ guile pkg-config texinfo ];
buildInputs = [ guile guile-fibers guile-gcrypt ];
makeFlags = [ "GUILE_AUTO_COMPILE=0" ];
# tests hang on darwin, and fail randomly on aarch64-linux on ofborg
doCheck = !stdenv.isDarwin && !stdenv.isAarch64;
meta = with lib; {
description = "Spritely Goblins for Guile";
homepage = "https://spritely.institute/goblins/";
license = licenses.asl20;
maintainers = with maintainers; [ grxnola ];
platforms = guile.meta.platforms;
};
}