8 stdenv.mkDerivation rec {
9 pname = "guile-quickcheck";
13 url = "https://files.ngyro.com/guile-quickcheck/guile-quickcheck-${version}.tar.gz";
14 hash = "sha256-y5msW+mbQ7YeucRS2VNUPokOKoP8g6ysKJ2UMWiIvA4=";
18 nativeBuildInputs = [ guile pkg-config ];
19 buildInputs = [ guile ];
21 doCheck = !stdenv.hostPlatform.isDarwin;
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;