guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH] gnu: Add fluid.


From: David Craven
Subject: Re: [PATCH] gnu: Add fluid.
Date: Mon, 9 Jan 2017 16:58:46 +0100

+(define-public fluid
+  (package
+    (name "fluid")
+    (version "0.8.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "https://github.com/hawaii-desktop/fluid";
+                    "/releases/download/v" version "/"
+                    "fluid-" version ".tar.xz"))
+              (sha256
+               (base32
+                "0f1xirjlli6r0mgky0a58w6ph3raihcwbck4my59mf12365hh57m"))))
+    (build-system cmake-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)))
+    (inputs
+     `(("qtbase" ,qtbase)
+       ("qtdeclarative" ,qtdeclarative)
+       ("qtquickcontrols" ,qtquickcontrols)
+       ("qtquickcontrols2" ,qtquickcontrols2)))
+    (arguments
+     `(#:configure-flags
+       (list (string-append "-DQML_INSTALL_DIR="
+                            (assoc-ref %outputs "out") "/qml"))))
+    (home-page "https://github.com/hawaii-desktop/fluid";)
+    (synopsis "Library for QtQuick applications")
+    (description "Modules for fluid and dynamic applications development with
+QtQuick.")
+    (license license:lgpl2.1+)))

This is how I packaged it, I never submitted my hawaii-desktop
packages because of some problems I haven't solved yet. Does this fix
the tests for you?



reply via email to

[Prev in Thread] Current Thread [Next in Thread]