From mboxrd@z Thu Jan 1 00:00:00 1970 From: Brett Gilio Subject: Gradio attempt Date: Wed, 10 Oct 2018 15:56:42 -0500 Message-ID: <87ftxdikqd.fsf@posteo.net> Mime-Version: 1.0 Content-Type: text/plain; format=flowed Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:44646) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gALXM-0007FE-0V for guix-devel@gnu.org; Wed, 10 Oct 2018 16:56:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gALXI-0004UG-Vo for guix-devel@gnu.org; Wed, 10 Oct 2018 16:56:55 -0400 Received: from mout01.posteo.de ([185.67.36.65]:37276) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gALXI-0004DG-26 for guix-devel@gnu.org; Wed, 10 Oct 2018 16:56:52 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id C9DD120F1E for ; Wed, 10 Oct 2018 22:56:49 +0200 (CEST) Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 42VmcJ5RDzz6tm5 for ; Wed, 10 Oct 2018 22:56:48 +0200 (CEST) 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: Guix-devel Hi all, I have just attempted by first complete Guix packaging. I am submitting it here for criticism. Here are a few things I am missing, or is not working for me on my end. 1) The description is virtually null, because I am not quite sure I understand fully what to put there. The documentation helped, but it still feels ambiguous to this specific project. 2) I tried a propagated-input of `lame` to make the MP3 codecs work, but it seems that was a failure. I have linted and verified most things here, let me know what you think: --- BEGIN --- (define-module (gradio) #:use-module (guix licenses) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix profiles) #:use-module (guix build-system meson) #:use-module (gnu packages glib) #:use-module (gnu packages gtk) #:use-module (gnu packages gnome) #:use-module (gnu packages gstreamer) #:use-module (gnu packages databases) #:use-module (gnu packages pkg-config) #:use-module (gnu packages base) #:use-module (gnu packages gettext) #:use-module (gnu packages freedesktop) #:use-module (gnu packages mp3)) (define-public gradio (package (name "gradio") (version "7.1") (source (origin (method url-fetch) (uri (string-append "https://github.com/haecker-felix/Gradio/archive/v" version ".tar.gz")) (sha256 (base32 "0rm73fldzlk6h8lssk8jcw6k97acsln09x5a1l1zj02g2a1hadbv")))) (build-system meson-build-system) (native-inputs `(("glib" ,glib "bin") ("gtk+" ,gtk+) ("gtk+" ,gtk+ "bin") ("libsoup" ,libsoup) ("json-glib" ,json-glib) ("gstreamer" ,gstreamer) ("sqlite" ,sqlite) ("vala" ,vala) ("pkg-config" ,pkg-config) ("gst-plugins-base" ,gst-plugins-base) ("gnu-gettext" ,gnu-gettext) ("desktop-file-utils" ,desktop-file-utils))) (propagated-inputs `(("lame" ,lame))) (synopsis "Find and listen to internet radio stations") (description "Find and listen to internet radio stations.") (home-page "https://github.com/haecker-felix/Gradio") (license gpl3+))) --- END --- -- Brett M. Gilio Free Software Foundation, Member https://gnu.org/s/guix/ | https://emacs.org