Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
35 lines
775 B
Nix
35 lines
775 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;
|
|
};
|
|
}
|