From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Craven Subject: Re: [PATCH] gnu: Add fluid. Date: Mon, 9 Jan 2017 16:58:46 +0100 Message-ID: References: <87r34c7cw6.fsf@wasp.i-did-not-set--mail-host-address--so-tickle-me> <20170109124413.2448-1-ng0@libertad.pw> <20170109124413.2448-2-ng0@libertad.pw> <87mvf0qpzr.fsf@wasp.i-did-not-set--mail-host-address--so-tickle-me> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38409) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cQcLT-0004M0-AB for guix-devel@gnu.org; Mon, 09 Jan 2017 10:58:52 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cQcLQ-00009v-5h for guix-devel@gnu.org; Mon, 09 Jan 2017 10:58:51 -0500 Received: from mail-qk0-x22f.google.com ([2607:f8b0:400d:c09::22f]:35001) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cQcLQ-00009h-0s for guix-devel@gnu.org; Mon, 09 Jan 2017 10:58:48 -0500 Received: by mail-qk0-x22f.google.com with SMTP id u25so529011192qki.2 for ; Mon, 09 Jan 2017 07:58:47 -0800 (PST) In-Reply-To: <87mvf0qpzr.fsf@wasp.i-did-not-set--mail-host-address--so-tickle-me> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: ng0 Cc: guix-devel +(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?