help-guix archive search

Search String: Display: Description: Sort:

Results:

References: [ howto: 52 ]

Total 52 documents matching your query.

1. Re: Howto disable unit test runs, when building custom Python packages (score: 34)
Author: HIDDEN
Date: Sun, 02 Jul 2023 11:21:15 +0200
Usually it should be as simple as: (arguments '(#:tests? #f)) If it runs the tests as part of the build step, then you'll need to either create a patch for it, use a custom source, or use substitute*
/archive/html/help-guix/2023-07/msg00004.html (5,552 bytes)

2. Howto disable unit test runs, when building custom Python packages (score: 34)
Author: HIDDEN
Date: Sat, 1 Jul 2023 18:45:17 -0400
I'm trying to figure out "Howto disable unit test runs, when building custom Python packages". I am trying to create a custom guix package of maurosoria/dirsearch <https://github.com/maurosoria/dirse
/archive/html/help-guix/2023-07/msg00002.html (4,810 bytes)

3. Howto reference a custom package from a manifest (score: 34)
Author: HIDDEN
Date: Thu, 18 May 2023 02:51:51 -0400
I successfully installed a custom rust package (see "*Howto supply cargo-build-system dependency to guix package definition* <https://lists.gnu.org/archive/html/help-guix/2023-05/msg00009.html>"). It
/archive/html/help-guix/2023-05/msg00177.html (5,242 bytes)

4. Re: Howto disable unit test runs, when building custom Python packages (score: 33)
Author: HIDDEN
Date: Sat, 19 Aug 2023 14:56:09 +0200
Hi, In addition, you can use the options --without-tests directly from the command-line. Cheers, simon
/archive/html/help-guix/2023-08/msg00036.html (4,083 bytes)

5. Re: Howto reference a custom package from a manifest (score: 33)
Author: HIDDEN
Date: Fri, 19 May 2023 18:15:08 +0200
Hi, Well, from my understanding, the failure is because Guix is not able to find the module where your custom package is defined. And you have various options, I think. 1. Via the option --load-path
/archive/html/help-guix/2023-05/msg00179.html (6,161 bytes)

6. Re: Howto supply cargo-build-system dependency to guix package definition (score: 33)
Author: HIDDEN
Date: Tue, 25 Apr 2023 16:44:52 -0400
Oh no, it's all good... But I don't see "crates-xyz" (or just xyz) in guix's packages. - https://packages.guix.gnu.org/search/?query=crates-xyz - https://packages.guix.gnu.org/search/?query=xyz $ gui
/archive/html/help-guix/2023-05/msg00009.html (6,040 bytes)

7. Re: Howto supply cargo-build-system dependency to guix package definition (score: 33)
Author: HIDDEN
Date: Thu, 27 Apr 2023 00:53:22 -0400
Thanks very much for your help. I got past that bit. Below is the config that got me through it. (define-module (guix packages rustscan) ... (define-public rustscan (package ... (arguments `(#:cargo-
/archive/html/help-guix/2023-05/msg00007.html (6,637 bytes)

8. Re: Howto supply cargo-build-system dependency to guix package definition (score: 33)
Author: HIDDEN
Date: Fri, 28 Apr 2023 16:08:45 -0400
Beauutiful! A. Actually the "guix import crate" command set off a light bulb... Can't I just pull in those dependencies recursively. And indeed you can. The only reason I needed to pull in those crat
/archive/html/help-guix/2023-05/msg00008.html (10,331 bytes)

9. Re: Howto supply cargo-build-system dependency to guix package definition (score: 33)
Author: HIDDEN
Date: Thu, 27 Apr 2023 23:06:35 -0400
Ok nice. I got much further with the rust-anyhow definition here <https://git.savannah.gnu.org/cgit/guix.git/tree/gnu/packages/crates-io.scm#n2773> (in crates-io). With these arguments.. (arguments `
/archive/html/help-guix/2023-05/msg00006.html (7,433 bytes)

10. Re: Howto supply cargo-build-system dependency to guix package definition (score: 33)
Author: HIDDEN
Date: Fri, 28 Apr 2023 15:23:53 +0100
Guix can't grab things from the internet during the build for reproducibility reasons, so it uses a Cargo feature that lets you substitute the registry for a directory full of tarballed crates, and u
/archive/html/help-guix/2023-04/msg00171.html (8,478 bytes)

11. Re: Howto supply cargo-build-system dependency to guix package definition (score: 33)
Author: HIDDEN
Date: Thu, 27 Apr 2023 17:36:53 +0100
Just add the input to the #:CARGO-INPUTS: ``` `(... (("rust-anyhow" ,rust-anyhow-2))) ``` Make sure to keep the inputs in alphabetical order :)
/archive/html/help-guix/2023-04/msg00167.html (5,954 bytes)

12. Re: Howto supply cargo-build-system dependency to guix package definition (score: 33)
Author: HIDDEN
Date: Wed, 26 Apr 2023 06:43:05 +0100
Okay, apparently it's actually ``crates-io'' :P (this time i actually checked...)
/archive/html/help-guix/2023-04/msg00161.html (5,345 bytes)

13. Re: Howto supply cargo-build-system dependency to guix package definition (score: 33)
Author: HIDDEN
Date: Tue, 25 Apr 2023 06:56:45 +0100
My mistake, it's actually ``crates-xyz'' :P
/archive/html/help-guix/2023-04/msg00157.html (5,143 bytes)

14. Re: Howto supply cargo-build-system dependency to guix package definition (score: 33)
Author: HIDDEN
Date: Mon, 24 Apr 2023 23:48:44 -0400
You've gotten me quite a bit further. This is great. Now, "guix build ..." breaks if I try to include "(gnu packages cargo-xyz)" (*or "(guix packages cargo-xyz)"*). A. guix build -L ~/dotfiles/ rusts
/archive/html/help-guix/2023-04/msg00156.html (8,595 bytes)

15. Re: Howto supply cargo-build-system dependency to guix package definition (score: 33)
Author: HIDDEN
Date: Mon, 24 Apr 2023 07:23:58 +0100
(You'll need to import (guix gexp) and (gnu packages cargo-xyz) for this to work.)
/archive/html/help-guix/2023-04/msg00144.html (5,142 bytes)

16. Re: Howto supply cargo-build-system dependency to guix package definition (score: 33)
Author: HIDDEN
Date: Mon, 24 Apr 2023 07:19:56 +0100
You don't need these. Try this: ``` (arguments (list #:cargo-inputs ```
/archive/html/help-guix/2023-04/msg00143.html (5,034 bytes)

17. Howto supply cargo-build-system dependency to guix package definition (score: 33)
Author: HIDDEN
Date: Sun, 23 Apr 2023 12:18:11 -0400
Heyyo, I'm new to Guix packaging here. And am trying to build RustScan <https://github.com/RustScan/RustScan> as a Guix package. This is my definition, which uses the "cargo-build-system". (define-mo
/archive/html/help-guix/2023-04/msg00137.html (6,495 bytes)

18. Re: howto: docker service (score: 33)
Author: HIDDEN
Date: Mon, 2 Dec 2019 11:56:49 +0100
Dear, It depends what you want to do with Docker. The entries point are "guix pack -f docker" and "guix system docker-image". For example, the command --8<--cut here--start-->8-- guix pack emacs \ -f
/archive/html/help-guix/2019-12/msg00004.html (5,768 bytes)

19. howto: docker service (score: 33)
Author: HIDDEN
Date: Mon, 2 Dec 2019 10:12:40 +0100 (CET)
hi, does anybody use docker? some times i need it for my work. and dont have any ideas how to run it =(
/archive/html/help-guix/2019-12/msg00002.html (3,343 bytes)

20. Re: [HOWTO] Start X server manually instead of using a login manager (score: 17)
Author: HIDDEN
Date: Mon, 26 Feb 2024 09:28:27 -0800
Hi Tomas, Not sure where the message originated, but I use the script below. Kind regards Felix * * * !# (let* ((profile (string-append (getenv "HOME") "/.guix-profile")) (virtual-terminal (string-ap
/archive/html/help-guix/2024-02/msg00165.html (4,788 bytes)


This search system is powered by Namazu