forked from mirrors/nixpkgs
easycrypt-runtest: init at 2022.04
This commit is contained in:
parent
b20934a65c
commit
c777cdf5c5
24
pkgs/applications/science/logic/easycrypt/runtest.nix
Normal file
24
pkgs/applications/science/logic/easycrypt/runtest.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ python3Packages, easycrypt }:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
inherit (easycrypt) src version;
|
||||
|
||||
pname = "easycrypt-runtest";
|
||||
|
||||
dontConfigure = true;
|
||||
dontBuild = true;
|
||||
doCheck = false;
|
||||
|
||||
pythonPath = with python3Packages; [ pyyaml ];
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
mkdir -p $out/bin
|
||||
cp scripts/testing/runtest $out/bin/ec-runtest
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = easycrypt.meta // {
|
||||
description = "Testing program for EasyCrypt formalizations";
|
||||
};
|
||||
}
|
|
@ -3364,6 +3364,8 @@ with pkgs;
|
|||
|
||||
easycrypt = callPackage ../applications/science/logic/easycrypt { };
|
||||
|
||||
easycrypt-runtest = callPackage ../applications/science/logic/easycrypt/runtest.nix { };
|
||||
|
||||
EBTKS = callPackage ../development/libraries/science/biology/EBTKS { };
|
||||
|
||||
ecasound = callPackage ../applications/audio/ecasound { };
|
||||
|
|
Loading…
Reference in a new issue