feat(cutelee): init

This commit is contained in:
catvayor 2024-12-16 14:27:12 +01:00
parent 6d804d5e17
commit 609399f994
Signed by: lbailly
GPG key ID: CE3E645251AC63F3

38
pkgs/cutelee.nix Normal file
View file

@ -0,0 +1,38 @@
{
lib,
stdenv,
fetchFromGitHub,
cmake,
qt6,
}:
stdenv.mkDerivation rec {
pname = "cutelee";
version = "6.1.0";
src = fetchFromGitHub {
owner = "cutelyst";
repo = "cutelee";
rev = "v${version}";
hash = "sha256-hoq9DDfRTS8T5uxTeVUdl5ipsimu7x4k0DQirPbWeeM=";
};
dontWrapQtApps = true;
nativeBuildInputs = [
cmake
];
buildInputs = [
qt6.qtbase
qt6.qttools
];
meta = {
description = "A Qt Template Engine based on Django templates";
homepage = "https://github.com/cutelyst/cutelee";
changelog = "https://github.com/cutelyst/cutelee/blob/${src.rev}/CHANGELOG";
license = lib.licenses.lgpl21Only;
maintainers = with lib.maintainers; [ ];
mainProgram = "cutelee";
platforms = lib.platforms.all;
};
}