uitest: init at 0-unstable-2024-05-26

This commit is contained in:
SchweGELBin
2025-10-12 15:29:31 +02:00
parent 98f024e65e
commit ba8b10fc81
+34
View File
@@ -0,0 +1,34 @@
{
stdenv,
lib,
fetchFromGitHub,
cmake,
tinycmmc,
}:
stdenv.mkDerivation {
pname = "uitest";
version = "0-unstable-2024-05-26";
src = fetchFromGitHub {
owner = "Grumbel";
repo = "uitest";
rev = "d845427140cbcbce99bb6c72919199ac5f033784";
sha256 = "sha256-xD2Ecs9hW3lcQW6RNcjVhGX/eor2RbCHHXohTafC9y0=";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ tinycmmc ];
postPatch = ''
substituteInPlace CMakeLists.txt \
--replace-fail "cmake_minimum_required(VERSION 3.0)" "cmake_minimum_required(VERSION 3.10)"
'';
meta = {
description = "Simple testing framework for interactive tests";
maintainers = [ lib.maintainers.SchweGELBin ];
platforms = lib.platforms.linux;
license = lib.licenses.gpl3;
};
}