nixpkgs/pkgs/development/coq-modules/simple-io/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
1.1 KiB
Nix
Raw Normal View History

2022-09-30 07:48:10 +00:00
{ lib, callPackage, mkCoqDerivation, coq, coq-ext-lib, version ? null }:
2020-08-28 21:05:46 +00:00
2023-06-01 08:14:00 +00:00
(mkCoqDerivation {
2020-08-28 21:05:46 +00:00
pname = "simple-io";
owner = "Lysxia";
repo = "coq-simple-io";
inherit version;
defaultVersion = with lib.versions; lib.switch coq.coq-version [
2023-09-01 08:11:49 +00:00
{ case = range "8.11" "8.18"; out = "1.8.0"; }
2022-04-05 06:51:28 +00:00
{ case = range "8.7" "8.13"; out = "1.3.0"; }
] null;
2023-06-01 08:14:00 +00:00
release."1.8.0".sha256 = "sha256-3ADNeXrBIpYRlfUW+LkLHUWV1w1HFrVc/TZISMuwvRY=";
2022-04-05 06:51:28 +00:00
release."1.7.0".sha256 = "sha256:1a1q9x2abx71hqvjdai3n12jxzd49mhf3nqqh3ya2ssl2lj609ci";
2020-08-28 21:05:46 +00:00
release."1.3.0".sha256 = "1yp7ca36jyl9kz35ghxig45x6cd0bny2bpmy058359p94wc617ax";
2022-04-05 06:51:28 +00:00
mlPlugin = true;
nativeBuildInputs = [ coq.ocamlPackages.cppo ];
2022-09-30 07:48:10 +00:00
propagatedBuildInputs = [ coq-ext-lib ]
++ (with coq.ocamlPackages; [ ocaml findlib ocamlbuild ]);
doCheck = true;
checkTarget = "test";
2022-09-30 07:48:10 +00:00
passthru.tests.HelloWorld = callPackage ./test.nix {};
meta = with lib; {
description = "Purely functional IO for Coq";
2020-08-28 21:05:46 +00:00
license = licenses.mit;
maintainers = [ maintainers.vbgl ];
};
2023-06-01 08:14:00 +00:00
}).overrideAttrs (o: lib.optionalAttrs (lib.versionAtLeast o.version "1.8.0" || o.version == "dev") {
doCheck = false;
useDune = true;
})