libsForQt5.mauikit: init at 1.2.1
This commit is contained in:
parent
1d0cd06d37
commit
b25837d9f4
2 changed files with 44 additions and 0 deletions
42
pkgs/development/libraries/mauikit/default.nix
Normal file
42
pkgs/development/libraries/mauikit/default.nix
Normal file
|
@ -0,0 +1,42 @@
|
||||||
|
{ lib
|
||||||
|
, mkDerivation
|
||||||
|
, fetchFromGitLab
|
||||||
|
, cmake
|
||||||
|
, extra-cmake-modules
|
||||||
|
, kio
|
||||||
|
, qtbase
|
||||||
|
, qtquickcontrols2
|
||||||
|
, syntax-highlighting
|
||||||
|
}:
|
||||||
|
|
||||||
|
mkDerivation rec {
|
||||||
|
pname = "mauikit";
|
||||||
|
version = "1.2.1";
|
||||||
|
|
||||||
|
src = fetchFromGitLab {
|
||||||
|
domain = "invent.kde.org";
|
||||||
|
owner = "maui";
|
||||||
|
repo = "mauikit";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1wimbpbn9yqqdcjd59x83z0mw2fycjz09py2rwimfi8ldmvi5lgy";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
cmake
|
||||||
|
extra-cmake-modules
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
kio
|
||||||
|
qtquickcontrols2
|
||||||
|
syntax-highlighting
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://mauikit.org/";
|
||||||
|
description = "Free and modular front-end framework for developing fast and compelling user experiences";
|
||||||
|
license = licenses.lgpl2Plus;
|
||||||
|
maintainers = with maintainers; [ dotlambda ];
|
||||||
|
broken = lib.versionOlder qtbase.version "5.14.0";
|
||||||
|
};
|
||||||
|
}
|
|
@ -115,6 +115,8 @@ in (kdeFrameworks // plasma5 // plasma5.thirdParty // kdeApplications // qt5 //
|
||||||
|
|
||||||
kpmcore = callPackage ../development/libraries/kpmcore { };
|
kpmcore = callPackage ../development/libraries/kpmcore { };
|
||||||
|
|
||||||
|
mauikit = callPackage ../development/libraries/mauikit { };
|
||||||
|
|
||||||
mlt = callPackage ../development/libraries/mlt/qt-5.nix { };
|
mlt = callPackage ../development/libraries/mlt/qt-5.nix { };
|
||||||
|
|
||||||
openbr = callPackage ../development/libraries/openbr { };
|
openbr = callPackage ../development/libraries/openbr { };
|
||||||
|
|
Loading…
Reference in a new issue