summary refs log tree commit diff
path: root/pkgs/development/libraries/mauikit
diff options
context:
space:
mode:
authorRobert Schütz <dev@schuetz-co.de>2021-03-06 11:31:22 +0100
committerRobert Schütz <dev@schuetz-co.de>2021-03-07 11:38:38 +0100
commitb25837d9f46228c3b97d041c7ff03e16251ba54b (patch)
tree0758567c7e944cf1c7872cdab2a59d5b6181309e /pkgs/development/libraries/mauikit
parent1d0cd06d37a34ff16b72ba15a8598dddf06c9a9e (diff)
downloadnixpkgs-b25837d9f46228c3b97d041c7ff03e16251ba54b.tar
nixpkgs-b25837d9f46228c3b97d041c7ff03e16251ba54b.tar.gz
nixpkgs-b25837d9f46228c3b97d041c7ff03e16251ba54b.tar.bz2
nixpkgs-b25837d9f46228c3b97d041c7ff03e16251ba54b.tar.lz
nixpkgs-b25837d9f46228c3b97d041c7ff03e16251ba54b.tar.xz
nixpkgs-b25837d9f46228c3b97d041c7ff03e16251ba54b.tar.zst
nixpkgs-b25837d9f46228c3b97d041c7ff03e16251ba54b.zip
libsForQt5.mauikit: init at 1.2.1
Diffstat (limited to 'pkgs/development/libraries/mauikit')
-rw-r--r--pkgs/development/libraries/mauikit/default.nix42
1 files changed, 42 insertions, 0 deletions
diff --git a/pkgs/development/libraries/mauikit/default.nix b/pkgs/development/libraries/mauikit/default.nix
new file mode 100644
index 00000000000..0ec814b7164
--- /dev/null
+++ b/pkgs/development/libraries/mauikit/default.nix
@@ -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";
+  };
+}