chromaprint: fpcalc missing

2018-04-02 Thread Pierre Neidhardt
The chromaprint commandline tool "fpcalc" to compute fingerprints is missing. I believe passing the CMAKE argument -DBUILD_TOOLS=ON would be enough. I guess it would be a nice fit for a separate output. -- Pierre Neidhardt signature.asc Description: PGP signature

Pros and cons of Emacs package management through Guix instead of package.el

2018-04-02 Thread Pierre Neidhardt
I am thinking of using Guix to manage all my Emacs packages. I can think of several benefits: - Guix provides (possibly) more stable versions. - Guix can update all packages without hanging Emacs. - Guix can update all packages from the commandline, i.e. it can be scripted. - Guix can rollbac

Re: trouble with 'guix import hackage'

2018-04-02 Thread Leo Famulari
On Mon, Apr 02, 2018 at 04:10:54PM -0400, Scott N. Walck wrote: > I'm so excited about Guix! It's awesome! I am trying to use > 'guix import hackage' and I'm running into problems. Okay :) > $ guix import hackage mtl@2.1.3.1 This works for me on my Debian system... > guix/build/download.scm:2

Re: Unison GTK UI in unison package

2018-04-02 Thread Leo Famulari
On Mon, Apr 02, 2018 at 02:10:22PM +0200, Arnaud B wrote: > I looked at the ocaml.scm file where the unison package is defined, > together with ocaml, lablgtk and a number of other related tools. It uses > the gtk module (gnu packages gtk), in which there is pango as well. > So it seems everything

trouble with 'guix import hackage'

2018-04-02 Thread Scott N. Walck
Hi folks, I'm so excited about Guix! It's awesome! I am trying to use 'guix import hackage' and I'm running into problems. I tried an example from the manual, shown below. It looks like there is a problem with certificate verification at hackage.haskell.org (although I'm not sure about this, b

Re: Trying to define a package

2018-04-02 Thread Arnaud B
​Hello Pierre and Oleg Thanks a lot for the detailed and helpful answers, I will do accordingly tomorrow night after work and report. Cheers

Re: Trying to define a package

2018-04-02 Thread Oleg Pykhalov
Hello Arnaud, Pierre Neidhardt writes: > Arnaud B writes: […] >> One thing to add is that the downloaded source file is not tar.gz file >> format but zip file, perhaps that's part of the problem ? > > I think you need > > (native-inputs > `(("unzip" ,unzip))) > > And add the (gnu pac

Re: Trying to define a package

2018-04-02 Thread Pierre Neidhardt
Arnaud B writes: > The thing is that I can not debug the build process, even though I use the > --keep-failed option : I'm not getting a temp build directory > (/tmp/guix-build-...) as I expect : This is so because it fails too early, that is, before it builds. The error is that when using `-f

Unison GTK UI in unison package

2018-04-02 Thread Arnaud B
Hello all, I looked at the ocaml.scm file where the unison package is defined, together with ocaml, lablgtk and a number of other related tools. It uses the gtk module (gnu packages gtk), in which there is pango as well. So it seems everything is in place to build unison and at the same time its g

Trying to define a package

2018-04-02 Thread Arnaud B
Hello all, I'm trying to create a package definition, following mainly the manual pages : - Packaging Guidelines - Defining-Packages