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