qlementine: init at 1.2.2

This commit is contained in:
JS (normalc/ea) 2025-05-15 14:08:50 -04:00
parent b3db0216cb
commit 0f33726913
No known key found for this signature in database
GPG key ID: 81278CD74F33766E

View file

@ -0,0 +1,54 @@
{
lib,
stdenv,
fetchFromGitHub,
cmake,
qt6,
nix-update-script,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "qlementine";
version = "1.2.2";
src = fetchFromGitHub {
owner = "oclero";
repo = "qlementine";
tag = "v${finalAttrs.version}";
hash = "sha256-icImLN04Ux+pqWaBTNruCkZC+735vzMz8tzssyCncjI=";
};
nativeBuildInputs = [ cmake ];
buildInputs = [
qt6.qtbase
qt6.qtsvg
];
dontWrapQtApps = true;
passthru.updateScript = nix-update-script { };
meta = {
description = "Modern QStyle for desktop Qt6 applications";
longDescription = ''
A QStyle for desktop Qt6 applications.
This library contains:
- A custom QStyle named QlementineStyle, that implements all the
necessary API to give a modern look and feel to your Qt
application. It's a drop-in replacement for the default QStyle.
- Lots of utilities to help you write beautiful QWidgets that fits
well with the style.
- A collection of new QWidgets that are missing in Qt's standard
collection, such as Switch.
'';
homepage = "https://oclero.github.io/qlementine/";
changelog = "https://github.com/oclero/qlementine/releases/tag/v${finalAttrs.version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ normalcea ];
platforms = lib.platforms.unix;
};
})