From mboxrd@z Thu Jan 1 00:00:00 1970 From: Daniel Pimentel Subject: Re: Create package and guix-daemon Date: Fri, 24 Jul 2015 09:57:57 -0300 Message-ID: <83fc94598cbcf94439868dac4b632879@openmailbox.org> References: <4c86aace96953a3ef6aebc6867855425@openmailbox.org> <2cb8375059e7acaec68c7fd7cdbb3cc7@openmailbox.org> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51661) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZIcYE-0001PK-A0 for guix-devel@gnu.org; Fri, 24 Jul 2015 08:58:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZIcY5-0004Ig-1k for guix-devel@gnu.org; Fri, 24 Jul 2015 08:58:10 -0400 Received: from smtp16.openmailbox.org ([62.4.1.50]:48833) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZIcY4-0004HB-P8 for guix-devel@gnu.org; Fri, 24 Jul 2015 08:58:00 -0400 In-Reply-To: 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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: "Thompson, David" Cc: guix-devel > I see a couple of problems here: > > 1) Looks like Perl is a necessary input. > > 2) There is no configure script, so you must remove the 'configure' > phase. Search for examples of this in other package definitions. > Does this package even use the GNU build system? > > - Dave 1. I'll check it. 2. I'll try it. I don't know about it but I think no, I'll see documentation about it. How remove the 'configure' phase (sorry for it :( )? My ipcalc.scm file: (define-module (gnu packages ipcalc) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu) #:use-module (guix licenses)) (define-public ipcalc (package (name "ipcalc") (version "0.41") (source (origin (method url-fetch) (uri (string-append "http://jodies.de/ipcalc-archive/ipcalc-" version ".tar.gz")) (sha256 (base32 "12if9sm8h2ac0pgwkw835cgyqjxm6h27k4kfn2vfas9krrqwbafx")))) (build-system gnu-build-system) (arguments `(#:configure-flags '("--enable-silent-rules"))) (synopsis "IP Calculator") (description "ipcalc takes an IP address and netmask and calculates the resulting broadcast, network, mask, and host range") (home-page "http://jodies.de/ipcalc") (license gpl2+))) Thanks, -- Daniel Pimentel (d4n1 3:)