mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-11 20:25:32 +03:00
qlementine-icons: init at 1.8.1
This commit is contained in:
parent
0f33726913
commit
a414236011
1 changed files with 49 additions and 0 deletions
49
pkgs/by-name/ql/qlementine-icons/package.nix
Normal file
49
pkgs/by-name/ql/qlementine-icons/package.nix
Normal 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;
|
||||||
|
};
|
||||||
|
})
|
Loading…
Add table
Add a link
Reference in a new issue