From c0f3c0cfd9723baf743bb552b603f37abfd2af96 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Wed, 24 Jan 2024 16:02:20 +0200 Subject: gnu: range-v3: Format with 'guix style'. * gnu/packages/cpp.scm (range-v3): Format with 'guix style'. Change-Id: I249443e5e5d0f7ef49e33de4f140246a862101d2 --- gnu/packages/cpp.scm | 43 +++++++++++++++++++------------------------ 1 file changed, 19 insertions(+), 24 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index dd16c53fce..eeb4e6bf7b 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -191,41 +191,36 @@ development effort.") (source (origin (method git-fetch) - (uri - (git-reference - (url "https://github.com/ericniebler/range-v3.git") - (commit version))) - (file-name - (git-file-name name version)) + (uri (git-reference + (url "https://github.com/ericniebler/range-v3.git") + (commit version))) + (file-name (git-file-name name version)) (patches (search-patches "range-v3-build-with-gcc10.patch")) (sha256 (base32 "18230bg4rq9pmm5f8f65j444jpq56rld4fhmpham8q3vr1c1bdjh")))) (build-system cmake-build-system) (arguments (list - #:configure-flags - #~(list "-DRANGES_NATIVE=OFF"))) - (native-inputs - (list doxygen perl)) - (inputs - (list boost)) + #:configure-flags #~(list "-DRANGES_NATIVE=OFF"))) + (native-inputs (list doxygen perl)) + (inputs (list boost)) (synopsis "Range library for C++14/17/20") - (description "Range-v3 is an extension of the Standard Template Library that + (description + "Range-v3 is an extension of the Standard Template Library that makes its iterators and algorithms more powerful by making them composable. Unlike other range-like solutions which, seek to do away with iterators, in range-v3 ranges are an abstraction layer on top of iterators.") (home-page "https://github.com/ericniebler/range-v3/") - (license - (list - ;; Elements of Programming - (license:x11-style "file:///LICENSE.txt") - ;; SGI STL - license:sgifreeb2.0 -;;; LibC++ (dual-licensed) - license:expat - license:ncsa - ;; Others - license:boost1.0)))) + (license (list + ;; Elements of Programming + (license:x11-style "file:///LICENSE.txt") + ;; SGI STL + license:sgifreeb2.0 + ;; LibC++ (dual-licensed) + license:expat + license:ncsa + ;; Others + license:boost1.0)))) (define-public robin-hood-hashing (package -- cgit v1.2.3 d92ac93cedd65f6c99daa530b69f43f6039ec'>bash completion: Fix & unify option parsing....Tobias Geerinckx-Rice 2022-01-17bash completion: Complete "guix home" sub-commands....Ludovic Courtès 2022-01-16bash completion: Fix options completion....Fulbert 2021-12-08bash completion: Complete ‘guix shell -f’....Tobias Geerinckx-Rice 2021-10-31bash completion: Complete top-level options....Tobias Geerinckx-Rice 2021-10-31bash completion: Don't hard-code "guix" binary name....Tobias Geerinckx-Rice 2021-10-25Add 'guix shell'....Ludovic Courtès 2021-10-24etc: completion: Filter gratuitous spaces from available packages....Liliana Marie Prikler 2021-10-03bash completion: Fix ‘system’ & ‘container’ subcommands....Tobias Geerinckx-Rice 2021-10-03bash completion: Complete ‘guix size’ file names....Tobias Geerinckx-Rice 2021-10-03bash completion: Complete ‘guix build’ file names....Tobias Geerinckx-Rice 2021-10-03bash completion: Complete ‘guix weather’ packages....Tobias Geerinckx-Rice 2021-10-03bash completion: Append to $COMPREPLY where possible....Tobias Geerinckx-Rice 2021-10-03bash completion: Consolidate similar $command ‘if’ branches....Tobias Geerinckx-Rice 2021-08-28zsh completion: Add missing commands and arguments....Noah Evans 2021-06-16bash_completion: Complete options for ‘guix environment’....Tobias Geerinckx-Rice 2021-06-16bash completion: Complete options for the right command....Tobias Geerinckx-Rice 2021-06-16bash completion: Really support subcommands....Tobias Geerinckx-Rice 2021-04-20import: Remove Nix importer....Ludovic Courtès 2021-02-17scripts: system: Remove 'vm-image' command....Mathieu Othacehe 2020-12-04bash completion: Complete file names after '-f' and '-l'....Ludovic Courtès 2020-09-24bash completion: Adjust to new 'guix help' output....Ludovic Courtès 2020-09-21bash completion: Complete file names after 'guix package -p'....