nixos/uptime-kuma: Add additional lockdown settings to systemd unit (#361452)
[NixPkgs.git] / pkgs / by-name / gu / guile-gcrypt / package.nix
blob3b6aa220ae923fa76d3bc4ac357bc3f5b2036990
1 { lib
2 , stdenv
3 , fetchFromGitea
4 , guile
5 , libgcrypt
6 , autoreconfHook
7 , pkg-config
8 , texinfo
9 }:
11 stdenv.mkDerivation rec {
12   pname = "guile-gcrypt";
13   version = "0.4.0";
15   src = fetchFromGitea {
16     domain = "notabug.org";
17     owner = "cwebber";
18     repo = "guile-gcrypt";
19     rev = "v${version}";
20     hash = "sha256-vbm31EsOJiMeTs2tu5KPXckxPcAQbi3/PGJ5EHCC5VQ=";
21   };
23   strictDeps = true;
24   nativeBuildInputs = [
25     autoreconfHook guile libgcrypt pkg-config texinfo
26   ];
27   buildInputs = [
28     guile
29   ];
30   propagatedBuildInputs = [
31     libgcrypt
32   ];
33   makeFlags = [ "GUILE_AUTO_COMPILE=0" ];
34   doCheck = true;
36   # In procedure bytevector-u8-ref: Argument 2 out of range
37   dontStrip = stdenv.hostPlatform.isDarwin;
39   meta = with lib; {
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;
45   };