depot/third_party/nixpkgs/pkgs/by-name/gu/guile-quickcheck/package.nix
Default email 7e47f3658e Project import generated by Copybara.
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
2024-09-26 11:04:55 +00:00

30 lines
758 B
Nix

{ stdenv
, lib
, fetchurl
, pkg-config
, guile
}:
stdenv.mkDerivation rec {
pname = "guile-quickcheck";
version = "0.1.0";
src = fetchurl {
url = "https://files.ngyro.com/guile-quickcheck/guile-quickcheck-${version}.tar.gz";
hash = "sha256-y5msW+mbQ7YeucRS2VNUPokOKoP8g6ysKJ2UMWiIvA4=";
};
strictDeps = true;
nativeBuildInputs = [ guile pkg-config ];
buildInputs = [ guile ];
doCheck = !stdenv.hostPlatform.isDarwin;
meta = with lib; {
homepage = "https://ngyro.com/software/guile-quickcheck.html";
description = "Guile library providing tools for randomized, property-based testing";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ foo-dogsquared ];
platforms = guile.meta.platforms;
};
}