Re: [RFC] Package of Nomacs

2021-01-07 Thread zimoun
Hi, On Thu, 31 Dec 2020 at 17:13, Leo Prikler wrote: > Am Donnerstag, den 31.12.2020, 16:37 +0100 schrieb Rovanion Luckey: > > > Use git-fetch instead and don't recurse into submodules. You will > > > likely encounter some errors, because it doesn't seem as though > > > nomacs > > > expects you

Re: [RFC] Package of Nomacs

2021-01-02 Thread Rovanion Luckey
Hi again Leo! That doesn't say much, because `guix environment` provides little > isolation. You might try with pure environments, but the better way of > replicating the build environment is using `-K`. > Ran in a `guix environment --pure --container` and it still built successfully. > I have

Re: [RFC] Package of Nomacs

2021-01-02 Thread Leo Prikler
Hello Rovanion, Am Samstag, den 02.01.2021, 15:43 +0100 schrieb Rovanion Luckey: > I can get the package to build using the following steps: > > git clone https://github.com/nomacs/nomacs.git > cd nomacs > mkdir build > cd build > guix environment --ad-hoc cmake make gcc libraw exiv2 libtiff open

Re: [RFC] Package of Nomacs

2021-01-02 Thread Rovanion Luckey
I can get the package to build using the following steps: git clone https://github.com/nomacs/nomacs.git cd nomacs mkdir build cd build guix environment --ad-hoc cmake make gcc libraw exiv2 libtiff opencv python quazip qtbase qtsvg qttools pkg-config git cmake "../ImageLounge" "-DCMAKE_BUILD_TYPE=

Re: [RFC] Package of Nomacs

2021-01-01 Thread Rovanion Luckey
Hi Leo and thank you for explaining. And hi again guix-devel. I've now rewritten the file according to your comments except that its still its own file/module, something I'll fix later. Now I'm stuck trying to figure out a build error after going from the tarball release through url-fetch to the

Re: [RFC] Package of Nomacs

2020-12-31 Thread Rovanion Luckey
Hi Leo and thank you for your comments. The nomacs package should probably go to gnu/packages/image- > viewers.scm. > Yup. > Use git-fetch instead and don't recurse into submodules. You will > likely encounter some errors, because it doesn't seem as though nomacs > expects you to have its input

Re: [RFC] Package of Nomacs

2020-12-31 Thread Leo Prikler
Hi Rovanion, Am Donnerstag, den 31.12.2020, 16:37 +0100 schrieb Rovanion Luckey: > [...] > > > Use git-fetch instead and don't recurse into submodules. You will > > likely encounter some errors, because it doesn't seem as though > > nomacs > > expects you to have its inputs properly packages.

[RFC] Package of Nomacs

2020-12-30 Thread Leo Prikler
Hi rovanion, > (define-module (nomacs) The nomacs package should probably go to gnu/packages/image- viewers.scm. > (source (origin > (method url-fetch) > (uri (string-append " > https://codeload.github.com/nomacs/nomacs/tar.gz/"; version)) > (sha256 >

[RFC] Package of Nomacs

2020-12-30 Thread Rovanion Luckey
Hi, I ended up working on a package for the image viewer Nomacs over Jul and would like some feedback on what I've managed so far. One thing that's missing is the plugins that are developed in a separate git repository [0] and not included in the source tarballs of the main repository [1]. Ideas on