nixos/uptime-kuma: Add additional lockdown settings to systemd unit (#361452)
[NixPkgs.git] / pkgs / by-name / gu / guile-quickcheck / package.nix
blob2c3c0f9c4b9bf31489c2b4f404ef525bcca4d8a6
1 { stdenv
2 , lib
3 , fetchurl
4 , pkg-config
5 , guile
6 }:
8 stdenv.mkDerivation rec {
9   pname = "guile-quickcheck";
10   version = "0.1.0";
12   src = fetchurl {
13     url = "https://files.ngyro.com/guile-quickcheck/guile-quickcheck-${version}.tar.gz";
14     hash = "sha256-y5msW+mbQ7YeucRS2VNUPokOKoP8g6ysKJ2UMWiIvA4=";
15   };
17   strictDeps = true;
18   nativeBuildInputs = [ guile pkg-config ];
19   buildInputs = [ guile ];
21   doCheck = !stdenv.hostPlatform.isDarwin;
23   meta = with lib; {
24     homepage = "https://ngyro.com/software/guile-quickcheck.html";
25     description = "Guile library providing tools for randomized, property-based testing";
26     license = licenses.gpl3Plus;
27     maintainers = with maintainers; [ foo-dogsquared ];
28     platforms = guile.meta.platforms;
29   };