From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: Re: Interest in package for pfff? Date: Fri, 1 Jan 2016 16:51:51 -0500 Message-ID: <20160101215151.GA12532@jasmine> References: <20160101082325.GB19743@thebird.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43962) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aF7c6-0005LN-6J for guix-devel@gnu.org; Fri, 01 Jan 2016 16:51:59 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aF7c3-0006qM-03 for guix-devel@gnu.org; Fri, 01 Jan 2016 16:51:58 -0500 Received: from out4-smtp.messagingengine.com ([66.111.4.28]:51671) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aF7c2-0006pr-S4 for guix-devel@gnu.org; Fri, 01 Jan 2016 16:51:54 -0500 Received: from compute2.internal (compute2.nyi.internal [10.202.2.42]) by mailout.nyi.internal (Postfix) with ESMTP id 4E97620671 for ; Fri, 1 Jan 2016 16:51:53 -0500 (EST) Content-Disposition: inline In-Reply-To: <20160101082325.GB19743@thebird.nl> 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: Pjotr Prins Cc: guix-devel@gnu.org On Fri, Jan 01, 2016 at 09:23:25AM +0100, Pjotr Prins wrote: > I just wrote a package for pfff. Should it go into Guix, and if so, > what module should it belong in? md5sum and shaxsum are part of > coreutils. I am thinking pfff should go into gnu/packages/hash.scm. Yeah, why not? > > Pj. > > (define-module (gn packages pfff) ^ gnu? > #:use-module ((guix licenses) #:prefix license:) > #:use-module (guix packages) > #:use-module (guix download) > #:use-module (guix build-system cmake)) > > (define-public pfff > (package > (name "pfff") > (version "1.0") > (source (origin > (method url-fetch) > (uri (string-append > "https://github.com/pfff/pfff/archive/v" version ".tar.gz")) > (sha256 > (base32 > "00m553aa277iarxj6dalmklyb64r7ias49bfwzbacsfg8h3kar8m")))) > (build-system cmake-build-system) > (home-page "http://biit.cs.ut.ee/pfff/") > (synopsis "Probabilistic fast file fingerprinting") > (description > "Calculate a probablistic fast finger print (pfff) which > functions as a compact digital fingerprint of a file by sampling > randomly from the file instead of reading it in full. Consequently, > the computation has a flat performance characteristic, correlated with > data variation rather than file size.") > (license license:bsd-3))) > -- >