From 89f4f11accf17198bcab8abfff6188bc51d2d822 Mon Sep 17 00:00:00 2001 From: Guillaume Le Vaillant Date: Mon, 14 Oct 2024 11:08:45 +0200 Subject: gnu: nanovna-saver: Update to 0.6.4. * gnu/packages/radio.scm (nanovna-saver): Update to 0.6.4. Change-Id: I99b18313d8e7f644bb8303d4f964b76d930184e5 --- gnu/packages/radio.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages') diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm index b068823392..3a463e21df 100644 --- a/gnu/packages/radio.scm +++ b/gnu/packages/radio.scm @@ -2010,7 +2010,7 @@ modes: (define-public nanovna-saver (package (name "nanovna-saver") - (version "0.6.3") + (version "0.6.4") (source (origin (method git-fetch) @@ -2019,7 +2019,7 @@ modes: (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "192lg3hmhr4r9b6an1k61d89fvar4kvqp3qjmpkb489c2zgaggll")))) + (base32 "07mih8jgpnnq101yqwv82sihbfjqi47dkvni34minbp19676q1bw")))) (build-system pyproject-build-system) (native-inputs (list python-cython python-setuptools-scm)) -- cgit v1.2.3 fs/?id=7167aa686ce4894770038a17589a52626d284d6f'>refslogtreecommitdiff
path: root/gnu/packages.scm
cm (specifications->packages): New procedure. * guix/scripts/home/import.scm (manifest+configuration-files->code): Use it. * tests/home-import.scm (match-home-environment-no-services) (match-home-environment-no-services-nor-packages) (match-home-environment-bash-service) (match-home-environment-bash-service-with-alias): Adjust 'packages' field accordingly. Co-authored-by: Ludovic Courtès <ludo@gnu.org>
AgeCommit message (Expand)Author
2024-12-12packages: Optimize ‘all-packages’....On my laptop, wall-clock time for (all-packages) goes from 27s to 1s. * gnu/packages.scm (all-packages): Use a hash table to remember visited packages instead of calling ‘delete-duplicates’ on the final list. Change-Id: I4aae804656b56ef2095993e91f0572a5891f419f Ludovic Courtès
2024-12-01packages: Factorize ‘all-packages’....* gnu/packages.scm (all-packages): New procedure. * etc/source-manifest.scm (all-packages): Remove. * guix/scripts/graph.scm (all-packages): Remove. * guix/scripts/refresh.scm (all-packages): Remove. * guix/scripts/weather.scm (all-packages): Remove. Change-Id: I6072952c4b877b541037ce86402cfb7744eeb0a0 Ludovic Courtès
Antero Mejr
2022-04-04packages: Add 'package-unique-version-prefix'....* gnu/packages.scm (package-unique-version-prefix): New procedure. * guix/scripts/package.scm (manifest-entry-version-prefix): Use it. * tests/packages.scm ("package-unique-version-prefix, gcc@8") ("package-unique-version-prefix, grep"): New tests. Ludovic Courtès
2022-01-11shell: Cache profiles even when using package specs....This enables profile caching not just when '-m' or '-f' is used, but also when package specs are passed on the command line, as in: guix shell -D guix git It also changes profile cache keys to include the system type, which was previously ignored. * guix/scripts/shell.scm (options-with-caching)[single-file-for-caching]: Remove. Call 'profile-cached-gc-root' instead; adjust to accept two values. (profile-cache-primary-key): New procedure. (profile-cache-key): Remove. (profile-file-cache-key, profile-spec-cache-key): New procedures. (profile-cached-gc-root): Rewrite to include functionality formally in 'single-file-for-caching', but extend to handle package specs. * gnu/packages.scm (cache-is-authoritative?): Export. * guix/transformations.scm (transformation-option-key?): New procedure. * doc/guix.texi (Invoking guix shell): Move '--rebuild-cache' documentation to the bottom, just above '--root'. Explain caching and how these two options relate to that. Ludovic Courtès