coqPackages.simple-io: 1.7.0 → 1.8.0

authored by Vincent Laporte and committed by Vincent Laporte fba73283 315e7a53

+8 -4
+7 -3
pkgs/development/coq-modules/simple-io/default.nix
··· 1 1 { lib, callPackage, mkCoqDerivation, coq, coq-ext-lib, version ? null }: 2 2 3 - mkCoqDerivation { 3 + (mkCoqDerivation { 4 4 pname = "simple-io"; 5 5 owner = "Lysxia"; 6 6 repo = "coq-simple-io"; 7 7 inherit version; 8 8 defaultVersion = with lib.versions; lib.switch coq.coq-version [ 9 - { case = range "8.11" "8.16"; out = "1.7.0"; } 9 + { case = range "8.11" "8.17"; out = "1.8.0"; } 10 10 { case = range "8.7" "8.13"; out = "1.3.0"; } 11 11 ] null; 12 + release."1.8.0".sha256 = "sha256-3ADNeXrBIpYRlfUW+LkLHUWV1w1HFrVc/TZISMuwvRY="; 12 13 release."1.7.0".sha256 = "sha256:1a1q9x2abx71hqvjdai3n12jxzd49mhf3nqqh3ya2ssl2lj609ci"; 13 14 release."1.3.0".sha256 = "1yp7ca36jyl9kz35ghxig45x6cd0bny2bpmy058359p94wc617ax"; 14 15 mlPlugin = true; ··· 26 27 license = licenses.mit; 27 28 maintainers = [ maintainers.vbgl ]; 28 29 }; 29 - } 30 + }).overrideAttrs (o: lib.optionalAttrs (lib.versionAtLeast o.version "1.8.0" || o.version == "dev") { 31 + doCheck = false; 32 + useDune = true; 33 + })
+1 -1
pkgs/development/coq-modules/simple-io/test.nix
··· 10 10 11 11 checkPhase = '' 12 12 cd test 13 - for p in Argv.v Example.v HelloWorld.v TestExtraction.v TestPervasives.v 13 + for p in Argv.v Example.v HelloWorld.v TestExtraction.v TestOcamlbuild.v TestPervasives.v 14 14 do 15 15 [ -f $p ] && echo $p && coqc $p 16 16 done