summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/maui/index.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/maui/index.nix')
-rw-r--r--pkgs/applications/maui/index.nix47
1 files changed, 47 insertions, 0 deletions
diff --git a/pkgs/applications/maui/index.nix b/pkgs/applications/maui/index.nix
new file mode 100644
index 000000000000..bc223adb4b1c
--- /dev/null
+++ b/pkgs/applications/maui/index.nix
@@ -0,0 +1,47 @@
+{ lib
+, mkDerivation
+, cmake
+, extra-cmake-modules
+, karchive
+, kcoreaddons
+, ki18n
+, kio
+, kirigami2
+, mauikit
+, mauikit-filebrowsing
+, qtmultimedia
+, qtquickcontrols2
+}:
+
+mkDerivation {
+ pname = "index-fm";
+
+ postPatch = ''
+ substituteInPlace CMakeLists.txt \
+ --replace "-Werror" ""
+ '';
+
+ nativeBuildInputs = [
+ cmake
+ extra-cmake-modules
+ ];
+
+ buildInputs = [
+ karchive
+ kcoreaddons
+ ki18n
+ kio
+ kirigami2
+ mauikit
+ mauikit-filebrowsing
+ qtmultimedia
+ qtquickcontrols2
+ ];
+
+ meta = with lib; {
+ description = "Multi-platform file manager";
+ homepage = "https://invent.kde.org/maui/index-fm";
+ license = licenses.gpl3Plus;
+ maintainers = with maintainers; [ dotlambda ];
+ };
+}