11 stdenv.mkDerivation rec {
12 pname = "guile-gcrypt";
15 src = fetchFromGitea {
16 domain = "notabug.org";
18 repo = "guile-gcrypt";
20 hash = "sha256-vbm31EsOJiMeTs2tu5KPXckxPcAQbi3/PGJ5EHCC5VQ=";
25 autoreconfHook guile libgcrypt pkg-config texinfo
30 propagatedBuildInputs = [
33 makeFlags = [ "GUILE_AUTO_COMPILE=0" ];
36 # In procedure bytevector-u8-ref: Argument 2 out of range
37 dontStrip = stdenv.hostPlatform.isDarwin;
40 description = "Bindings to Libgcrypt for GNU Guile";
41 homepage = "https://notabug.org/cwebber/guile-gcrypt";
42 license = licenses.gpl3Plus;
43 maintainers = with maintainers; [ ethancedwards8 ];
44 platforms = guile.meta.platforms;