Re: Package variant defined in manifest not visible by Guix

2021-08-18 Thread zimoun
Hi Philippe, On Wed, 18 Aug 2021 at 10:57, Philippe SWARTVAGHER wrote: > Le 16/08/2021 à 16:34, Ricardo Wurmus a écrit : >> There seems to be a small misunderstanding.  You defined a package >> variant, but that’s not a manifest.  A manifest describes the complete >> contents of a profile; i.e

Re: Package variant defined in manifest not visible by Guix

2021-08-18 Thread Philippe SWARTVAGHER
Hello, Le 16/08/2021 à 16:34, Ricardo Wurmus a écrit : > There seems to be a small misunderstanding.  You defined a package > variant, but that’s not a manifest.  A manifest describes the complete > contents of a profile; i.e. it’s a list of packages that Guix should > install. > > Here are three

Re: Package variant defined in manifest not visible by Guix

2021-08-17 Thread zimoun
Hi Philippe, On Mon, 16 Aug 2021 at 16:34, Ricardo Wurmus wrote: > 3) Create a module and use it however you want. [...] > Put this in a file “my/packages/storm.scm” and then set the > GUIX_PACKAGE_PATH environment variable to the directory containing > “my” (e.g. $HOME/code/guix/custom cont

Re: Package variant defined in manifest not visible by Guix

2021-08-16 Thread Ricardo Wurmus
Hi, I'm trying to use a manifest file to define a package variant which adds an option to the configure phase: ``` (use-modules (inria storm)) (define starpu-maxnodes1 (package (inherit starpu) (arguments (substitute-keyword-arguments (package-arguments starpu)

Re: Package variant defined in manifest not visible by Guix

2021-08-16 Thread Efraim Flashner
On Mon, Aug 16, 2021 at 10:08:34AM +0200, Philippe SWARTVAGHER wrote: > Hello, > > I'm trying to use a manifest file to define a package variant which adds > an option to the configure phase: > > ``` > > (use-modules (inria storm)) > > (define starpu-maxnodes1 >   (package >     (inherit starpu

Package variant defined in manifest not visible by Guix

2021-08-16 Thread Philippe SWARTVAGHER
Hello, I'm trying to use a manifest file to define a package variant which adds an option to the configure phase: ``` (use-modules (inria storm)) (define starpu-maxnodes1   (package     (inherit starpu)     (arguments   (substitute-keyword-arguments (package-arguments starpu)