about summary refs log tree commit diff
path: root/nixpkgs/pkgs/by-name/gu/guile-quickcheck/package.nix
blob: 0a7a0c836a640df81ba6f2cdf401d5c8f3af3d6e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ 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.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;
  };
}