qlementine-icons: init at 1.8.1

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

View file

@ -0,0 +1,49 @@
{
lib,
stdenv,
fetchFromGitHub,
cmake,
qt6,
nix-update-script,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "qlementine-icons";
version = "1.8.1";
src = fetchFromGitHub {
owner = "oclero";
repo = "qlementine-icons";
tag = "v${finalAttrs.version}";
hash = "sha256-b6krWtDCQjJRzzkFNYLt33iSSQHm1UZ3AedXrzRrDTs=";
};
nativeBuildInputs = [ cmake ];
buildInputs = [
qt6.qtbase
qt6.qtsvg
];
dontWrapQtApps = true;
passthru.updateScript = nix-update-script { };
meta = {
description = "Vector icon set for modern desktop Qt5/Qt6 applications";
longDescription = ''
An icon set aimed to be used in conjunction with the Qlementine Qt library.
This icon set provides icons as requested by the Freedesktop
standard, and vastly expands it, in 16×16 pixels.
The icons are in SVG format, so can be scaled to any size without
loosing any quality. However, they've been designed to be used in
`16×16` pixels, to be pixel-perfect.
'';
homepage = "https://github.com/oclero/qlementine-icons";
changelog = "https://github.com/oclero/qlementine-icons/releases/tag/v${finalAttrs.version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ normalcea ];
platforms = lib.platforms.unix;
};
})