qt-color-widgets: init at 2.2.0-unstable-2025-05-26
This commit is contained in:
parent
09ed4ac3e3
commit
73da1baabe
40
pkgs/development/libraries/qt-color-widgets/default.nix
Normal file
40
pkgs/development/libraries/qt-color-widgets/default.nix
Normal file
@ -0,0 +1,40 @@
|
||||
{
|
||||
stdenv,
|
||||
lib,
|
||||
fetchFromGitLab,
|
||||
cmake,
|
||||
qtbase,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "qt-color-widgets";
|
||||
version = "2.2.0-unstable-2025-05-26";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "mattbas";
|
||||
repo = "qt-color-widgets";
|
||||
rev = "8491078434b24cba295b5e41cc0d2a94c7049a5b";
|
||||
hash = "sha256-77G1NU7079pvqhQnSTmMdkd2g1R2hoJxn183WcsWq8c=";
|
||||
};
|
||||
|
||||
dontWrapQtApps = true;
|
||||
|
||||
cmakeFlags = [
|
||||
"-DQT_VERSION_MAJOR=${lib.versions.major qtbase.version}"
|
||||
];
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
qtbase
|
||||
];
|
||||
|
||||
meta = {
|
||||
homepage = "https://gitlab.com/mattbas/Qt-Color-Widgets";
|
||||
description = "Qt (C++) widgets to manage color inputs";
|
||||
license = lib.licenses.lgpl3Plus;
|
||||
maintainers = with lib.maintainers; [ dmkhitaryan ];
|
||||
platforms = lib.platforms.linux ++ lib.platforms.darwin;
|
||||
};
|
||||
})
|
@ -95,6 +95,8 @@ makeScopeWithSplicing' {
|
||||
|
||||
qt6gtk2 = callPackage ../tools/misc/qt6gtk2 { };
|
||||
|
||||
qt-color-widgets = callPackage ../development/libraries/qt-color-widgets { };
|
||||
|
||||
qtforkawesome = callPackage ../development/libraries/qtforkawesome { };
|
||||
|
||||
qtkeychain = callPackage ../development/libraries/qtkeychain { };
|
||||
|
Loading…
x
Reference in New Issue
Block a user