mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
7103f32aee
* gnu/packages/rust-apps.scm (zoxide)[arguments]: Don't install the sources. Change-Id: Ib9a3d8cb5d267c063cbb1ec099d6d70ca168e742
2684 lines
107 KiB
Scheme
2684 lines
107 KiB
Scheme
;;; GNU Guix --- Functional package management for GNU
|
|
;;; Copyright © 2019, 2020 John Soo <jsoo1@asu.edu>
|
|
;;; Copyright © 2019-2023 Efraim Flashner <efraim@flashner.co.il>
|
|
;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net>
|
|
;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de>
|
|
;;; Copyright © 2020 Leo Famulari <leo@famulari.name>
|
|
;;; Copyright © 2020 Mark H Weaver <mhw@netris.org>
|
|
;;; Copyright © 2020 Gabriel Arazas <foo.dogsquared@gmail.com>
|
|
;;; Copyright © 2020-2023 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
|
;;; Copyright © 2020 Arun Isaac <arunisaac@systemreboot.net>
|
|
;;; Copyright © 2021 Tobias Geerinckx-Rice <me@tobias.gr>
|
|
;;; Copyright © 2021 Sharlatan Hellseher <sharlatanus@gmail.ccom>
|
|
;;; Copyright © 2021, 2022 Zheng Junjie <873216071@qq.com>
|
|
;;; Copyright © 2021 Alexandru-Sergiu Marton <brown121407@posteo.ro>
|
|
;;; Copyright © 2021, 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
|
;;; Copyright © 2021, 2022 Petr Hodina <phodina@protonmail.com>
|
|
;;; Copyright © 2021 jgart <jgart@dismail.de>
|
|
;;; Copyright © 2021 Nicolas Graves <ngraves@ngraves.fr>
|
|
;;; Copyright © 2022 Aleksandr Vityazev <avityazev@posteo.org>
|
|
;;; Copyright © 2022 Gabriel Arazas <foo.dogsquared@gmail.com>
|
|
;;; Copyright © 2022 Ricardo Wurmus <rekado@elephly.net>
|
|
;;; Copyright © 2022 Mathieu Laparie <mlaparie@disr.it>
|
|
;;; Copyright © 2022 ( <paren@disroot.org>
|
|
;;; Copyright © 2022 John Kehayias <john.kehayias@protonmail.com>
|
|
;;; Copyright © 2022 Greg Hogan <code@greghogan.com>
|
|
;;; Copyright © 2023 Arnav Andrew Jose <arnav.jose@gmail.com>
|
|
;;; Copyright © 2023 Wilko Meyer <w@wmeyer.eu>
|
|
;;; Copyright © 2023 Jaeme Sifat <jaeme@runbox.com>
|
|
;;; Copyright © 2023 Steve George <steve@futurile.net>
|
|
;;;
|
|
;;; This file is part of GNU Guix.
|
|
;;;
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
;;; under the terms of the GNU General Public License as published by
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
;;; your option) any later version.
|
|
;;;
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
;;; GNU General Public License for more details.
|
|
;;;
|
|
;;; You should have received a copy of the GNU General Public License
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
(define-module (gnu packages rust-apps)
|
|
#:use-module (guix build-system cargo)
|
|
#:use-module (guix build-system pyproject)
|
|
#:use-module (guix deprecation)
|
|
#:use-module (guix download)
|
|
#:use-module (guix gexp)
|
|
#:use-module (guix git-download)
|
|
#:use-module ((guix licenses) #:prefix license:)
|
|
#:use-module (guix packages)
|
|
#:use-module (guix utils)
|
|
#:use-module (gnu packages)
|
|
#:use-module (gnu packages admin)
|
|
#:use-module (gnu packages base)
|
|
#:use-module (gnu packages bash)
|
|
#:use-module (gnu packages compression)
|
|
#:use-module (gnu packages crates-io)
|
|
#:use-module (gnu packages crates-graphics)
|
|
#:use-module (gnu packages curl)
|
|
#:use-module (gnu packages documentation)
|
|
#:use-module (gnu packages fontutils)
|
|
#:use-module (gnu packages freedesktop)
|
|
#:use-module (gnu packages haskell-xyz)
|
|
#:use-module (gnu packages glib)
|
|
#:use-module (gnu packages gtk)
|
|
#:use-module (gnu packages ibus)
|
|
#:use-module (gnu packages icu4c)
|
|
#:use-module (gnu packages image)
|
|
#:use-module (gnu packages jemalloc)
|
|
#:use-module (gnu packages kde)
|
|
#:use-module (gnu packages linux)
|
|
#:use-module (gnu packages networking)
|
|
#:use-module (gnu packages ssh)
|
|
#:use-module (gnu packages pcre)
|
|
#:use-module (gnu packages perl)
|
|
#:use-module (gnu packages pkg-config)
|
|
#:use-module (gnu packages pulseaudio)
|
|
#:use-module (gnu packages python)
|
|
#:use-module (gnu packages python-build)
|
|
#:use-module (gnu packages python-xyz)
|
|
#:use-module (gnu packages sqlite)
|
|
#:use-module (gnu packages tls)
|
|
#:use-module (gnu packages version-control)
|
|
#:use-module (gnu packages webkit)
|
|
#:use-module (gnu packages xorg))
|
|
|
|
(define-public agate
|
|
(package
|
|
(name "agate")
|
|
(version "2.5.2")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (crate-uri "agate" version))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32 "1mhrl4j5r6wzsnwpqsbgzny5vqschyjm3gnk4y88har7skk7j19v"))))
|
|
(build-system cargo-build-system)
|
|
(arguments
|
|
`(#:cargo-inputs
|
|
(("rust-configparser" ,rust-configparser-2)
|
|
("rust-env-logger" ,rust-env-logger-0.8)
|
|
("rust-getopts" ,rust-getopts-0.2)
|
|
("rust-glob" ,rust-glob-0.3)
|
|
("rust-log" ,rust-log-0.4)
|
|
("rust-mime-guess" ,rust-mime-guess-2)
|
|
("rust-once-cell" ,rust-once-cell-1)
|
|
("rust-percent-encoding" ,rust-percent-encoding-2)
|
|
("rust-rustls" ,rust-rustls-0.19)
|
|
("rust-tokio" ,rust-tokio-1)
|
|
("rust-tokio-rustls" ,rust-tokio-rustls-0.22)
|
|
("rust-url" ,rust-url-2))))
|
|
(native-inputs
|
|
(list perl))
|
|
(home-page "https://github.com/mbrubeck/agate")
|
|
(synopsis "Very simple server for the Gemini hypertext protocol")
|
|
(description
|
|
"Agate is a server for the Gemini network protocol, built with the Rust
|
|
programming language. It has very few features, and can only serve static
|
|
files. It uses async I/O, and should be quite efficient even when running on
|
|
low-end hardware and serving many concurrent requests.")
|
|
(license (list license:expat license:asl2.0))))
|
|
|
|
(define-public alfis
|
|
(package
|
|
(name "alfis")
|
|
(version "0.8.4")
|
|
(source
|
|
(origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://github.com/Revertron/Alfis")
|
|
(commit (string-append "v" version))))
|
|
(file-name (git-file-name name version))
|
|
(sha256
|
|
(base32 "1zqszjyiab0b76m2b8zfzpndg393hn311whq1fs9syfn53hp7nh4"))
|
|
(snippet
|
|
#~(begin (use-modules (guix build utils))
|
|
;; Use a packaged version of web-view.
|
|
(substitute* "Cargo.toml"
|
|
(("git = .*,") "version = \"0.7.3\","))))))
|
|
(build-system cargo-build-system)
|
|
(arguments
|
|
`(#:cargo-test-flags
|
|
'("--release" "--"
|
|
"--skip=dns::client::tests::test_tcp_client"
|
|
"--skip=dns::client::tests::test_udp_client")
|
|
#:cargo-inputs
|
|
(("rust-getopts" ,rust-getopts-0.2)
|
|
("rust-log" ,rust-log-0.4)
|
|
("rust-simplelog" ,rust-simplelog-0.12)
|
|
("rust-toml" ,rust-toml-0.7)
|
|
("rust-digest" ,rust-digest-0.10)
|
|
("rust-sha2" ,rust-sha2-0.10)
|
|
("rust-ed25519-dalek" ,rust-ed25519-dalek-1)
|
|
("rust-x25519-dalek" ,rust-x25519-dalek-1)
|
|
("rust-ecies-ed25519" ,rust-ecies-ed25519-0.5)
|
|
("rust-chacha20poly1305" ,rust-chacha20poly1305-0.9)
|
|
("rust-signature" ,rust-signature-2)
|
|
("rust-blakeout" ,rust-blakeout-0.3)
|
|
("rust-num-cpus" ,rust-num-cpus-1)
|
|
("rust-byteorder" ,rust-byteorder-1)
|
|
("rust-serde" ,rust-serde-1)
|
|
("rust-serde-json" ,rust-serde-json-1)
|
|
("rust-bincode" ,rust-bincode-1)
|
|
("rust-serde-cbor" ,rust-serde-cbor-0.11)
|
|
("rust-base64" ,rust-base64-0.21)
|
|
("rust-num-bigint" ,rust-num-bigint-0.4)
|
|
("rust-num-traits" ,rust-num-traits-0.2)
|
|
("rust-chrono" ,rust-chrono-0.4)
|
|
("rust-rand" ,rust-rand-0.8)
|
|
("rust-rand-0.7" ,rust-rand-0.7) ;For ed25519-dalek
|
|
("rust-sqlite" ,rust-sqlite-0.30)
|
|
("rust-uuid" ,rust-uuid-1)
|
|
("rust-mio" ,rust-mio-0.8)
|
|
("rust-ureq" ,rust-ureq-2)
|
|
("rust-lru" ,rust-lru-0.9)
|
|
("rust-derive-more" ,rust-derive-more-0.99)
|
|
("rust-lazy-static" ,rust-lazy-static-1)
|
|
("rust-spmc" ,rust-spmc-0.3)
|
|
("rust-tinyfiledialogs" ,rust-tinyfiledialogs-3)
|
|
("rust-web-view" ,rust-web-view-0.7)
|
|
("rust-open" ,rust-open-3)
|
|
("rust-winapi" ,rust-winapi-0.3)
|
|
("rust-thread-priority" ,rust-thread-priority-0.10)
|
|
("rust-winres" ,rust-winres-0.1))
|
|
#:cargo-development-inputs
|
|
(("rust-serde-bytes" ,rust-serde-bytes-0.11)
|
|
("rust-serde-derive" ,rust-serde-derive-1))))
|
|
(native-inputs
|
|
(list perl pkg-config))
|
|
(inputs
|
|
(list at-spi2-core
|
|
gtk
|
|
glib
|
|
pango
|
|
sqlite
|
|
webkitgtk-with-libsoup2))
|
|
(home-page "https://github.com/Revertron/Alfis")
|
|
(synopsis "Alternative Free Identity System")
|
|
(description
|
|
"This project represents a minimal blockchain without cryptocurrency,
|
|
capable of sustaining any number of domain names in a bunch of original
|
|
alternative zones.")
|
|
(license license:agpl3+)))
|
|
|
|
(define-public bat
|
|
(package
|
|
(name "bat")
|
|
(version "0.20.0")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (crate-uri "bat" version))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32 "05sj0chxpai26fhk1k7p5m54v3j7n1x64ayx53mcimsj1skdr77m"))))
|
|
(build-system cargo-build-system)
|
|
(arguments
|
|
`(#:cargo-inputs
|
|
(("rust-ansi-colours" ,rust-ansi-colours-1)
|
|
("rust-ansi-term" ,rust-ansi-term-0.12)
|
|
("rust-atty" ,rust-atty-0.2)
|
|
("rust-bincode" ,rust-bincode-1)
|
|
("rust-bugreport" ,rust-bugreport-0.4)
|
|
("rust-bytesize" ,rust-bytesize-1)
|
|
("rust-clap" ,rust-clap-2)
|
|
("rust-clap" ,rust-clap-2)
|
|
("rust-clircle" ,rust-clircle-0.3)
|
|
("rust-console" ,rust-console-0.15)
|
|
("rust-content-inspector" ,rust-content-inspector-0.2)
|
|
("rust-dirs-next" ,rust-dirs-next-2)
|
|
("rust-encoding" ,rust-encoding-0.2)
|
|
("rust-flate2" ,rust-flate2-1)
|
|
("rust-git2" ,rust-git2-0.13)
|
|
("rust-globset" ,rust-globset-0.4)
|
|
("rust-grep-cli" ,rust-grep-cli-0.1)
|
|
("rust-once-cell" ,rust-once-cell-1)
|
|
("rust-path-abs" ,rust-path-abs-0.5)
|
|
("rust-regex" ,rust-regex-1)
|
|
("rust-semver" ,rust-semver-1)
|
|
("rust-serde" ,rust-serde-1)
|
|
("rust-serde-yaml" ,rust-serde-yaml-0.8)
|
|
("rust-shell-words" ,rust-shell-words-1)
|
|
("rust-syntect" ,rust-syntect-4)
|
|
("rust-thiserror" ,rust-thiserror-1)
|
|
("rust-unicode-width" ,rust-unicode-width-0.1)
|
|
("rust-walkdir" ,rust-walkdir-2)
|
|
("rust-wild" ,rust-wild-2))
|
|
#:cargo-development-inputs
|
|
(("rust-assert-cmd" ,rust-assert-cmd-2)
|
|
("rust-nix" ,rust-nix-0.23)
|
|
("rust-predicates" ,rust-predicates-2)
|
|
("rust-serial-test" ,rust-serial-test-0.5)
|
|
("rust-tempfile" ,rust-tempfile-3)
|
|
("rust-wait-timeout" ,rust-wait-timeout-0.2))))
|
|
(native-inputs
|
|
(list pkg-config))
|
|
(inputs
|
|
(list libgit2 zlib))
|
|
(home-page "https://github.com/sharkdp/bat")
|
|
(synopsis "@command{cat} clone with syntax highlighting and git integration")
|
|
(description
|
|
"@command{bat} is a drop-in @command{cat} replacement featuring syntax
|
|
highlighting for a large number of languages, git integration, and automatic
|
|
paging.")
|
|
(license (list license:expat license:asl2.0))))
|
|
|
|
(define-public diffr
|
|
(package
|
|
(name "diffr")
|
|
(version "0.1.4")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (crate-uri "diffr" version))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32 "1b0mz1ki2ksxni6g49x5l5j9ijpyhc11mywvxr9i9h3nr098nc5l"))))
|
|
(build-system cargo-build-system)
|
|
(arguments
|
|
`(#:install-source? #f
|
|
;; https://github.com/mookid/diffr/issues/79
|
|
#:cargo-test-flags
|
|
'("--release" "--"
|
|
"--skip=tests::success"
|
|
"--skip=test_cli::color_invalid_attribute_name"
|
|
"--skip=test_cli::color_invalid_color_not_done"
|
|
"--skip=test_cli::color_invalid_color_value_ansi"
|
|
"--skip=test_cli::color_invalid_color_value_name"
|
|
"--skip=test_cli::color_invalid_color_value_rgb"
|
|
"--skip=test_cli::color_invalid_face_name"
|
|
"--skip=test_cli::color_ok"
|
|
"--skip=test_cli::color_ok_multiple"
|
|
"--skip=test_cli::color_only_face_name"
|
|
"--skip=test_cli::debug_flag")
|
|
#:cargo-inputs
|
|
(("rust-atty" ,rust-atty-0.2)
|
|
("rust-clap" ,rust-clap-2)
|
|
("rust-diffr-lib" ,rust-diffr-lib-0.1)
|
|
("rust-termcolor" ,rust-termcolor-1))))
|
|
(home-page "https://github.com/mookid/diffr")
|
|
(synopsis "Longest Common Sequence based diff highlighting tool")
|
|
(description
|
|
"This package provides an @acronym{LCS, longest common sequence} based diff
|
|
highlighting tool to ease code review from your terminal.")
|
|
(license license:expat)))
|
|
|
|
(define-public drill
|
|
(package
|
|
(name "drill")
|
|
(version "0.7.1")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (crate-uri "drill" version))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32 "1m73d7rzi0p5c1hn0081d2235kcyapdza7h0vqf5jhnirpnjn793"))))
|
|
(build-system cargo-build-system)
|
|
(arguments
|
|
`(#:cargo-inputs
|
|
(("rust-async-trait" ,rust-async-trait-0.1)
|
|
("rust-clap" ,rust-clap-2)
|
|
("rust-colored" ,rust-colored-1)
|
|
("rust-csv" ,rust-csv-1)
|
|
("rust-futures" ,rust-futures-0.3)
|
|
("rust-lazy-static" ,rust-lazy-static-1)
|
|
("rust-linked-hash-map" ,rust-linked-hash-map-0.5)
|
|
("rust-num-cpus" ,rust-num-cpus-1)
|
|
("rust-rand" ,rust-rand-0.7)
|
|
("rust-regex" ,rust-regex-1)
|
|
("rust-reqwest" ,rust-reqwest-0.10)
|
|
("rust-serde" ,rust-serde-1)
|
|
("rust-serde-json" ,rust-serde-json-1)
|
|
("rust-tokio" ,rust-tokio-0.2)
|
|
("rust-url" ,rust-url-2)
|
|
("rust-yaml-rust" ,rust-yaml-rust-0.4))))
|
|
(native-inputs
|
|
(list pkg-config))
|
|
(inputs
|
|
(list openssl))
|
|
(home-page "https://github.com/fcsonline/drill")
|
|
(synopsis "HTTP load testing application")
|
|
(description
|
|
"Drill is a HTTP load testing application written in Rust inspired by
|
|
Ansible syntax. Benchmark files can be written in YAML.")
|
|
(license license:gpl3)))
|
|
|
|
(define-public dutree
|
|
(package
|
|
(name "dutree")
|
|
(version "0.2.18")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (crate-uri "dutree" version))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32 "1611h27i8fm3jndscd6w65z8z7w09nnrm61vdgs9kb8ln57gqm8x"))))
|
|
(build-system cargo-build-system)
|
|
(arguments
|
|
`(#:install-source? #f
|
|
#:cargo-inputs
|
|
(("rust-getopts" ,rust-getopts-0.2)
|
|
("rust-regex" ,rust-regex-1)
|
|
("rust-signal-hook" ,rust-signal-hook-0.1)
|
|
("rust-terminal-size" ,rust-terminal-size-0.1)
|
|
("rust-unicode-segmentation" ,rust-unicode-segmentation-1)
|
|
("rust-unicode-width" ,rust-unicode-width-0.1))))
|
|
(home-page "https://ownyourbits.com/2018/03/25/analyze-disk-usage-with-dutree/")
|
|
(synopsis "Command line tool to analyze disk usage")
|
|
(description
|
|
"@command{dutree} is command line tool to analyze disk usage.
|
|
Features include:
|
|
@enumerate
|
|
@item coloured output, according to the @code{LS_COLORS} environment variable.
|
|
@item display the file system tree.
|
|
@item ability to aggregate small files.
|
|
@item ability to exclude files or directories.
|
|
@item ability to compare different directories.
|
|
@item fast, written in Rust.
|
|
@end enumerate\n")
|
|
(license license:gpl3)))
|
|
|
|
(define-public exa
|
|
(package
|
|
(name "exa")
|
|
(version "0.10.1")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (crate-uri "exa" version))
|
|
(file-name
|
|
(string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"1dd7waq2bnxc1xwygqphi8k1g2qzykr6fk0q4rgrhhxp2jd09f04"))))
|
|
(build-system cargo-build-system)
|
|
(arguments
|
|
`(#:install-source? #f
|
|
#:cargo-inputs
|
|
(("rust-ansi-term" ,rust-ansi-term-0.12)
|
|
("rust-datetime" ,rust-datetime-0.5)
|
|
("rust-env-logger" ,rust-env-logger-0.6)
|
|
("rust-git2" ,rust-git2-0.13)
|
|
("rust-glob" ,rust-glob-0.3)
|
|
("rust-lazy-static" ,rust-lazy-static-1)
|
|
("rust-libc" ,rust-libc-0.2)
|
|
("rust-locale" ,rust-locale-0.2)
|
|
("rust-log" ,rust-log-0.4)
|
|
("rust-natord" ,rust-natord-1)
|
|
("rust-num-cpus" ,rust-num-cpus-1)
|
|
("rust-number-prefix" ,rust-number-prefix-0.4)
|
|
("rust-scoped-threadpool" ,rust-scoped-threadpool-0.1)
|
|
("rust-term-grid" ,rust-term-grid-0.1)
|
|
("rust-term-size" ,rust-term-size-0.3)
|
|
("rust-unicode-width" ,rust-unicode-width-0.1)
|
|
("rust-users" ,rust-users-0.11)
|
|
("rust-zoneinfo-compiled" ,rust-zoneinfo-compiled-0.5))
|
|
#:cargo-development-inputs
|
|
(("rust-datetime" ,rust-datetime-0.5))
|
|
#:phases
|
|
(modify-phases %standard-phases
|
|
(add-after 'build 'build-manual
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
(when (assoc-ref inputs "pandoc")
|
|
(map (lambda (page)
|
|
(with-output-to-file page
|
|
(lambda _
|
|
(invoke "pandoc" "--standalone"
|
|
"-f" "markdown"
|
|
"-t" "man"
|
|
(string-append "man/" page ".md")))))
|
|
(list "exa.1" "exa_colors.5")))))
|
|
(add-after 'install 'install-extras
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
(share (string-append out "/share"))
|
|
(man1 (string-append share "/man/man1"))
|
|
(man5 (string-append share "/man/man5")))
|
|
(when (file-exists? "exa.1")
|
|
(install-file "exa.1" man1))
|
|
(when (file-exists? "exa_colors.5")
|
|
(install-file "exa_colors.5" man5))
|
|
(mkdir-p (string-append out "/etc/bash_completion.d"))
|
|
(mkdir-p (string-append share "/fish/vendor_completions.d"))
|
|
(mkdir-p (string-append share "/zsh/site-functions"))
|
|
(copy-file "completions/completions.bash"
|
|
(string-append out "/etc/bash_completion.d/exa"))
|
|
(copy-file "completions/completions.fish"
|
|
(string-append
|
|
share "/fish/vendor_completions.d/exa.fish"))
|
|
(copy-file "completions/completions.zsh"
|
|
(string-append
|
|
share "/zsh/site-functions/_exa"))))))))
|
|
(inputs (list libgit2 zlib))
|
|
(native-inputs
|
|
(append
|
|
(list pkg-config)
|
|
(if (member (%current-system)
|
|
(package-transitive-supported-systems pandoc))
|
|
(list pandoc)
|
|
'())))
|
|
(home-page "https://the.exa.website/")
|
|
(synopsis "Modern replacement for ls")
|
|
(description "@code{exa} is a modern replacement for the command-line
|
|
program @code{ls}. It uses colours to distinguish file types and metadata. It
|
|
also knows about symlinks, extended attributes, and Git.")
|
|
(license license:expat)))
|
|
|
|
(define-public eza
|
|
(package
|
|
(name "eza")
|
|
(version "0.15.2")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (crate-uri "eza" version))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32 "14qapnxc1rwqsq6c13b35wgaiypn23niajk39c44i1w3if91rd85"))))
|
|
(build-system cargo-build-system)
|
|
(arguments
|
|
(list
|
|
#:install-source? #f
|
|
#:cargo-inputs `(("rust-ansiterm" ,rust-ansiterm-0.12)
|
|
("rust-chrono" ,rust-chrono-0.4)
|
|
("rust-git2" ,rust-git2-0.18)
|
|
("rust-glob" ,rust-glob-0.3)
|
|
("rust-libc" ,rust-libc-0.2)
|
|
("rust-locale" ,rust-locale-0.2)
|
|
("rust-log" ,rust-log-0.4)
|
|
("rust-natord" ,rust-natord-1)
|
|
("rust-num-cpus" ,rust-num-cpus-1)
|
|
("rust-number-prefix" ,rust-number-prefix-0.4)
|
|
("rust-once-cell" ,rust-once-cell-1)
|
|
("rust-percent-encoding" ,rust-percent-encoding-2)
|
|
("rust-phf" ,rust-phf-0.11)
|
|
("rust-proc-mounts" ,rust-proc-mounts-0.3)
|
|
("rust-scoped-threadpool" ,rust-scoped-threadpool-0.1)
|
|
("rust-terminal-size" ,rust-terminal-size-0.3)
|
|
("rust-timeago" ,rust-timeago-0.4)
|
|
("rust-unicode-width" ,rust-unicode-width-0.1)
|
|
("rust-uutils-term-grid" ,rust-uutils-term-grid-0.3)
|
|
("rust-uzers" ,rust-uzers-0.11)
|
|
("rust-windows-sys" ,rust-windows-sys-0.48)
|
|
("rust-zoneinfo-compiled" ,rust-zoneinfo-compiled-0.5))
|
|
#:cargo-development-inputs `(("rust-criterion" ,rust-criterion-0.5)
|
|
("rust-trycmd" ,rust-trycmd-0.14))
|
|
#:phases #~(modify-phases %standard-phases
|
|
(add-after 'build 'build-manual
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
(when (assoc-ref inputs "pandoc")
|
|
(map (lambda (page)
|
|
(with-output-to-file page
|
|
(lambda _
|
|
(invoke "pandoc" "--standalone"
|
|
"-f" "markdown"
|
|
"-t" "man"
|
|
(string-append "man/" page ".md")))))
|
|
(list "eza.1" "eza_colors.5")))))
|
|
(add-after 'install 'install-extras
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
(share (string-append out "/share"))
|
|
(man1 (string-append share "/man/man1"))
|
|
(man5 (string-append share "/man/man5")))
|
|
(when (file-exists? "eza.1")
|
|
(install-file "eza.1" man1))
|
|
(when (file-exists? "eza_colors.5")
|
|
(install-file "eza_colors.5" man5))
|
|
(mkdir-p (string-append out "/etc/bash_completion.d"))
|
|
(mkdir-p (string-append
|
|
share "/fish/vendor_completions.d"))
|
|
(mkdir-p (string-append share "/zsh/site-functions"))
|
|
(copy-file "completions/bash/eza"
|
|
(string-append
|
|
out "/etc/bash_completion.d/eza"))
|
|
(copy-file "completions/fish/eza.fish"
|
|
(string-append
|
|
share "/fish/vendor_completions.d/eza.fish"))
|
|
(copy-file "completions/zsh/_eza"
|
|
(string-append
|
|
share "/zsh/site-functions/_eza"))))))))
|
|
(native-inputs
|
|
(append
|
|
(list pkg-config)
|
|
(if (supported-package? pandoc)
|
|
(list pandoc)
|
|
'())))
|
|
(inputs (list libgit2-1.7 zlib))
|
|
(home-page "https://github.com/eza-community/eza")
|
|
(synopsis "Modern replacement for ls")
|
|
(description
|
|
"@code{eza} is a modern replacement for the command-line
|
|
program @code{ls}. It uses colours to distinguish file types and
|
|
metadata. It also knows about symlinks, extended attributes, and Git.
|
|
This package is the community maintained fork of @code{exa}.")
|
|
(license license:expat)))
|
|
|
|
(define-public fd
|
|
(package
|
|
(name "fd")
|
|
(version "8.7.0")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (crate-uri "fd-find" version))
|
|
(file-name
|
|
(string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"186217yyb0znfn4jcc9l3i51fhfyb23lhbm3gg084sdrbj6bdnbg"))))
|
|
(build-system cargo-build-system)
|
|
(arguments
|
|
`(#:cargo-test-flags
|
|
'("--release"
|
|
"--"
|
|
;; No user 'root' in the build environment.
|
|
"--skip=test_owner_root")
|
|
#:install-source? #f
|
|
#:cargo-inputs
|
|
(("rust-anyhow" ,rust-anyhow-1)
|
|
("rust-argmax" ,rust-argmax-0.3)
|
|
("rust-atty" ,rust-atty-0.2)
|
|
("rust-chrono" ,rust-chrono-0.4)
|
|
("rust-clap" ,rust-clap-4)
|
|
("rust-clap-complete" ,rust-clap-complete-4)
|
|
("rust-crossbeam-channel" ,rust-crossbeam-channel-0.5)
|
|
("rust-ctrlc" ,rust-ctrlc-3)
|
|
("rust-dirs-next" ,rust-dirs-next-2)
|
|
("rust-faccess" ,rust-faccess-0.2)
|
|
("rust-globset" ,rust-globset-0.4)
|
|
("rust-humantime" ,rust-humantime-2)
|
|
("rust-ignore" ,rust-ignore-0.4)
|
|
("rust-jemallocator" ,rust-jemallocator-0.5)
|
|
("rust-libc" ,rust-libc-0.2)
|
|
("rust-lscolors" ,rust-lscolors-0.13)
|
|
("rust-nix" ,rust-nix-0.26)
|
|
("rust-normpath" ,rust-normpath-0.3)
|
|
("rust-nu-ansi-term" ,rust-nu-ansi-term-0.46)
|
|
("rust-num-cpus" ,rust-num-cpus-1)
|
|
("rust-once-cell" ,rust-once-cell-1)
|
|
("rust-regex" ,rust-regex-1)
|
|
("rust-regex-syntax" ,rust-regex-syntax-0.6)
|
|
("rust-users" ,rust-users-0.11)
|
|
("rust-version-check" ,rust-version-check-0.9))
|
|
#:cargo-development-inputs
|
|
(("rust-diff" ,rust-diff-0.1)
|
|
("rust-filetime" ,rust-filetime-0.2)
|
|
("rust-tempfile" ,rust-tempfile-3)
|
|
("rust-test-case" ,rust-test-case-2))
|
|
#:phases
|
|
(modify-phases %standard-phases
|
|
(add-after 'unpack 'override-jemalloc
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
(let ((jemalloc (assoc-ref inputs "jemalloc")))
|
|
;; This flag is needed when not using the bundled jemalloc.
|
|
;; https://github.com/tikv/jemallocator/issues/19
|
|
(setenv "CARGO_FEATURE_UNPREFIXED_MALLOC_ON_SUPPORTED_PLATFORMS" "1")
|
|
(setenv "JEMALLOC_OVERRIDE"
|
|
(string-append jemalloc "/lib/libjemalloc.so")))))
|
|
(add-after 'unpack 'adjust-feature-flags
|
|
(lambda _
|
|
;; unstable-grouped was stablized in rust-clap 4.2.0
|
|
(substitute* "Cargo.toml"
|
|
((".*unstable-grouped.*") ""))))
|
|
(add-after 'install 'install-extra
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
(let ((out (assoc-ref outputs "out")))
|
|
;; Manpages
|
|
(install-file "doc/fd.1" (string-append out "/share/man/man1"))
|
|
;; Completions require running the built binary.
|
|
(unless ,(%current-target-system)
|
|
(invoke "make" "completions")
|
|
(install-file "autocomplete/fd.bash"
|
|
(string-append out "/etc/bash_completion.d"))
|
|
(install-file "autocomplete/fd.fish"
|
|
(string-append out "/share/fish/vendor_completions.d"))
|
|
(install-file "autocomplete/_fd"
|
|
(string-append out "/share/zsh/site-functions"))
|
|
(rename-file (string-append out "/etc/bash_completion.d/fd.bash")
|
|
(string-append out "/etc/bash_completion.d/fd")))))))))
|
|
(inputs (list jemalloc))
|
|
(home-page "https://github.com/sharkdp/fd")
|
|
(synopsis "Simple, fast and user-friendly alternative to find")
|
|
(description
|
|
"@code{fd} is a simple, fast and user-friendly alternative to @code{find}.
|
|
While it does not seek to mirror all of find's powerful functionality, it
|
|
provides defaults for 80% of the use cases.")
|
|
(license (list license:expat license:asl2.0))))
|
|
|
|
(define-public hexyl
|
|
(package
|
|
(name "hexyl")
|
|
(version "0.8.0")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (crate-uri "hexyl" version))
|
|
(file-name
|
|
(string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"0sipag77196467idbznbk5q5lwhqz85zw7y1pwg9b27jxqyk04rp"))))
|
|
(build-system cargo-build-system)
|
|
(arguments
|
|
`(#:cargo-inputs
|
|
(("rust-ansi-term" ,rust-ansi-term-0.12)
|
|
("rust-atty" ,rust-atty-0.2)
|
|
("rust-clap" ,rust-clap-2)
|
|
("rust-libc" ,rust-libc-0.2))))
|
|
(home-page "https://github.com/sharkdp/hexyl")
|
|
(synopsis "Command-line hex viewer")
|
|
(description
|
|
"This package provides a command line hex viewer. It uses a colored output
|
|
for distinguishing different kinds of bytes such as NULL bytes, printable ASCII
|
|
characters, ASCII whitespace characters, other ASCII characters and non-ASCII.")
|
|
(license (list license:expat license:asl2.0))))
|
|
|
|
(define-public hyperfine
|
|
(package
|
|
(name "hyperfine")
|
|
(version "1.11.0")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (crate-uri "hyperfine" version))
|
|
(file-name
|
|
(string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"0m5lrvx6wwkxqdc5digm1k4diiaqcg5j4pia77s5nw1aam7k51hy"))))
|
|
(build-system cargo-build-system)
|
|
(arguments
|
|
`(#:modules ((guix build cargo-build-system)
|
|
(guix build utils)
|
|
(srfi srfi-26))
|
|
#:install-source? #f
|
|
#:cargo-inputs
|
|
(("rust-atty" ,rust-atty-0.2)
|
|
("rust-cfg-if" ,rust-cfg-if-0.1)
|
|
("rust-clap" ,rust-clap-2)
|
|
("rust-colored" ,rust-colored-2)
|
|
("rust-csv" ,rust-csv-1)
|
|
("rust-indicatif" ,rust-indicatif-0.15)
|
|
("rust-libc" ,rust-libc-0.2)
|
|
("rust-rand" ,rust-rand-0.7)
|
|
("rust-rust-decimal" ,rust-rust-decimal-1)
|
|
("rust-serde" ,rust-serde-1)
|
|
("rust-serde-json" ,rust-serde-json-1)
|
|
("rust-statistical" ,rust-statistical-1)
|
|
("rust-version-check" ,rust-version-check-0.9)
|
|
("rust-winapi" ,rust-winapi-0.3))
|
|
#:cargo-development-inputs
|
|
(("rust-approx" ,rust-approx-0.3))
|
|
#:phases
|
|
(modify-phases %standard-phases
|
|
(add-after 'install 'install-more
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
(share (string-append out "/share/"))
|
|
(man (string-append share "man/man1"))
|
|
(bash (string-append share "bash-completion/completions"))
|
|
(fish (string-append share "fish/vendor_completions.d"))
|
|
(zsh (string-append share "zsh/site-functions")))
|
|
(install-file "doc/hyperfine.1" man)
|
|
(for-each (cut install-file <> bash)
|
|
(find-files "target" "^hyperfine.bash$"))
|
|
(rename-file (string-append bash "/hyperfine.bash")
|
|
(string-append bash "/hyperfine"))
|
|
(for-each (cut install-file <> fish)
|
|
(find-files "target" "^hyperfine.fish$"))
|
|
(for-each (cut install-file <> zsh)
|
|
(find-files "target" "^_hyperfine$"))))))))
|
|
(home-page "https://github.com/sharkdp/hyperfine")
|
|
(synopsis "Command-line benchmarking tool")
|
|
(description
|
|
"This package provides a command-line benchmarking tool.")
|
|
(license (list license:expat license:asl2.0))))
|
|
|
|
(define-public i3status-rust
|
|
(package
|
|
(name "i3status-rust")
|
|
(version "0.20.1")
|
|
(source
|
|
(origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://github.com/greshake/i3status-rust")
|
|
(commit (string-append "v" version))))
|
|
(file-name (git-file-name name version))
|
|
(patches (search-patches "i3status-rust-enable-unstable-features.patch"))
|
|
(sha256
|
|
(base32 "00gzm3g297s9bfp13vnb623p7dfac3g6cdhz2b3lc6l0kmnnqs1s"))))
|
|
(build-system cargo-build-system)
|
|
(arguments
|
|
`(#:features '("pulseaudio" "libpulse-binding")
|
|
#:install-source? #f
|
|
#:cargo-inputs
|
|
(("rust-chrono" ,rust-chrono-0.4)
|
|
("rust-chrono-tz" ,rust-chrono-tz-0.5)
|
|
("rust-crossbeam-channel" ,rust-crossbeam-channel-0.5)
|
|
("rust-curl" ,rust-curl-0.4)
|
|
("rust-dbus" ,rust-dbus-0.9)
|
|
("rust-dbus-tree" ,rust-dbus-tree-0.9)
|
|
("rust-lazy-static" ,rust-lazy-static-1)
|
|
("rust-nix" ,rust-nix-0.20)
|
|
("rust-nl80211" ,rust-nl80211-0.0.2)
|
|
("rust-serde" ,rust-serde-1)
|
|
("rust-serde-derive" ,rust-serde-derive-1)
|
|
("rust-serde-json" ,rust-serde-json-1)
|
|
("rust-signal-hook" ,rust-signal-hook-0.3)
|
|
("rust-swayipc" ,rust-swayipc-2)
|
|
("rust-toml" ,rust-toml-0.5)
|
|
("rust-cpuprofiler" ,rust-cpuprofiler-0.0)
|
|
("rust-inotify" ,rust-inotify-0.9)
|
|
("rust-libpulse-binding" ,rust-libpulse-binding-2)
|
|
("rust-maildir" ,rust-maildir-0.5)
|
|
("rust-notmuch" ,rust-notmuch-0.6)
|
|
("rust-progress" ,rust-progress-0.2))
|
|
#:cargo-development-inputs
|
|
(("rust-assert-fs" ,rust-assert-fs-1))
|
|
#:phases
|
|
(modify-phases %standard-phases
|
|
(add-after 'unpack 'enable-unstable-features
|
|
(lambda _
|
|
(setenv "RUSTC_BOOTSTRAP" "1")))
|
|
(add-after 'unpack 'fix-resources-path
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
(share (string-append out "/share")))
|
|
(substitute* "src/util.rs"
|
|
(("/usr/share/i3status-rust") share)))))
|
|
(add-after 'install 'install-resources
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
(let ((out (assoc-ref outputs "out")))
|
|
(copy-recursively "files" (string-append out "/share")))))
|
|
(add-after 'install 'wrap-i3status
|
|
(lambda* (#:key outputs inputs #:allow-other-keys)
|
|
(let ((out (assoc-ref outputs "out"))
|
|
(paths (map
|
|
(lambda (input)
|
|
(string-append (assoc-ref inputs input) "/bin"))
|
|
'("alsa-utils" "coreutils" "curl" "dbus" "ibus" "iproute"
|
|
"kdeconnect" "lm-sensors" "pulseaudio"
|
|
"openssl"
|
|
"setxkbmap" "speedtest-cli" "xdg-utils" "xrandr"
|
|
"zlib"))))
|
|
(wrap-program (string-append out "/bin/i3status-rs")
|
|
`("PATH" prefix ,paths))))))))
|
|
(native-inputs
|
|
(list pkg-config))
|
|
(inputs
|
|
`(("alsa-utils" ,alsa-utils)
|
|
("bash-minimal" ,bash-minimal)
|
|
("coreutils" ,coreutils)
|
|
("curl" ,curl)
|
|
("dbus" ,dbus)
|
|
("ibus" ,ibus)
|
|
("iproute" ,iproute)
|
|
("kdeconnect" ,kdeconnect)
|
|
("lm-sensors" ,lm-sensors)
|
|
("pulseaudio" ,pulseaudio)
|
|
("openssl" ,openssl)
|
|
("setxkbmap" ,setxkbmap)
|
|
("speedtest-cli" ,speedtest-cli)
|
|
("xdg-utils" ,xdg-utils)
|
|
("xrandr" ,xrandr)
|
|
("zlib" ,zlib)))
|
|
(home-page "https://github.com/greshake/i3status-rust")
|
|
(synopsis "i3status, written in pure Rust")
|
|
(description "@code{i3status-rs} is a feature-rich and resource-friendly
|
|
replacement for i3status, written in pure Rust. It provides a way to display
|
|
@code{blocks} of system information (time, battery status, volume, etc) on the i3
|
|
bar. It is also compatible with sway.")
|
|
(license license:gpl3)))
|
|
|
|
(define-public just
|
|
(package
|
|
(name "just")
|
|
(version "1.14.0")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (crate-uri "just" version))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32 "0kafd87zmjf7wswyiqakqd2r5b8q3a761ipsihmrg9wr57k5zlis"))))
|
|
(build-system cargo-build-system)
|
|
(arguments
|
|
`(#:cargo-test-flags
|
|
'("--release" "--"
|
|
"--skip=functions::env_var_functions"
|
|
"--skip=string::shebang_backtick")
|
|
#:install-source? #f
|
|
#:cargo-inputs
|
|
(("rust-ansi-term" ,rust-ansi-term-0.12)
|
|
("rust-atty" ,rust-atty-0.2)
|
|
("rust-camino" ,rust-camino-1)
|
|
("rust-clap" ,rust-clap-2)
|
|
("rust-ctrlc" ,rust-ctrlc-3)
|
|
("rust-derivative" ,rust-derivative-2)
|
|
("rust-dotenvy" ,rust-dotenvy-0.15)
|
|
("rust-edit-distance" ,rust-edit-distance-2)
|
|
("rust-env-logger" ,rust-env-logger-0.10)
|
|
("rust-heck" ,rust-heck-0.4)
|
|
("rust-lexiclean" ,rust-lexiclean-0.0.1)
|
|
("rust-libc" ,rust-libc-0.2)
|
|
("rust-log" ,rust-log-0.4)
|
|
("rust-regex" ,rust-regex-1)
|
|
("rust-serde" ,rust-serde-1)
|
|
("rust-serde-json" ,rust-serde-json-1)
|
|
("rust-sha2" ,rust-sha2-0.10)
|
|
("rust-similar" ,rust-similar-2)
|
|
("rust-snafu" ,rust-snafu-0.7)
|
|
("rust-strum" ,rust-strum-0.24)
|
|
("rust-target" ,rust-target-2)
|
|
("rust-tempfile" ,rust-tempfile-3)
|
|
("rust-typed-arena" ,rust-typed-arena-2)
|
|
("rust-unicode-width" ,rust-unicode-width-0.1)
|
|
("rust-uuid" ,rust-uuid-1))
|
|
#:cargo-development-inputs
|
|
(("rust-cradle" ,rust-cradle-0.2)
|
|
("rust-executable-path" ,rust-executable-path-1)
|
|
("rust-pretty-assertions" ,rust-pretty-assertions-1)
|
|
("rust-temptree" ,rust-temptree-0.2)
|
|
("rust-which" ,rust-which-4)
|
|
("rust-yaml-rust" ,rust-yaml-rust-0.4))
|
|
#:phases
|
|
(modify-phases %standard-phases
|
|
(add-after 'unpack 'replace-hardcoded-paths
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
(substitute* (cons "src/justfile.rs"
|
|
(find-files "tests/" "\\.rs$"))
|
|
(("/bin/sh")
|
|
(search-input-file inputs "/bin/sh"))
|
|
(("/usr/bin/env sh")
|
|
(search-input-file inputs "/bin/sh"))
|
|
(("/usr/bin/env")
|
|
(search-input-file inputs "/bin/env"))
|
|
(("/bin/echo")
|
|
(search-input-file inputs "/bin/echo")))))
|
|
(add-after 'install 'install-manpage
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
(install-file "man/just.1"
|
|
(string-append (assoc-ref outputs "out")
|
|
"/share/man/man1"))))
|
|
(add-after 'install 'install-completions
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
(share (string-append out "/share"))
|
|
(just (string-append out "/bin/just")))
|
|
(mkdir-p (string-append share "/bash-completion/completions"))
|
|
(with-output-to-file
|
|
(string-append share "/bash-completion/completions/just")
|
|
(lambda _ (invoke just "--completions" "bash")))
|
|
(mkdir-p (string-append share "/fish/vendor_completions.d"))
|
|
(with-output-to-file
|
|
(string-append share "/fish/vendor_completions.d/just.fish")
|
|
(lambda _ (invoke just "--completions" "fish")))
|
|
(mkdir-p (string-append share "/zsh/site-functions"))
|
|
(with-output-to-file
|
|
(string-append share "/zsh/site-functions/_just")
|
|
(lambda _ (invoke just "--completions" "zsh")))
|
|
(mkdir-p (string-append share "/elvish/lib"))
|
|
(with-output-to-file
|
|
(string-append share "/elvish/lib/just")
|
|
(lambda _ (invoke just "--completions" "elvish")))))))))
|
|
(inputs (list bash-minimal coreutils-minimal))
|
|
(home-page "https://github.com/casey/just")
|
|
(synopsis "Just a command runner")
|
|
(description "This package provides @code{just}, a command runner.
|
|
@code{just} is a handy way to save and run project-specific commands.")
|
|
(license license:cc0)))
|
|
|
|
(define-public kibi
|
|
(package
|
|
(name "kibi")
|
|
(version "0.2.2")
|
|
(source
|
|
(origin
|
|
;; crates.io doesn't have the config files
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://github.com/ilai-deutel/kibi")
|
|
(commit (string-append "v" version))))
|
|
(file-name (git-file-name name version))
|
|
(sha256
|
|
(base32 "1s9ka3pfhpssms2y5707f33n59ljnqqwp7jarh2l55a9dhlnl7d3"))))
|
|
(build-system cargo-build-system)
|
|
(arguments
|
|
(list
|
|
#:install-source? #f
|
|
#:cargo-test-flags `(list "--release" "--"
|
|
"--skip=syntax::tests::syntax_d_files")
|
|
#:cargo-inputs `(("rust-libc" ,rust-libc-0.2)
|
|
("rust-unicode-width" ,rust-unicode-width-0.1)
|
|
("rust-winapi" ,rust-winapi-0.3)
|
|
("rust-winapi-util" ,rust-winapi-util-0.1))
|
|
#:cargo-development-inputs `(("rust-serial-test" ,rust-serial-test-0.5)
|
|
("rust-tempfile" ,rust-tempfile-3))
|
|
#:phases #~(modify-phases %standard-phases
|
|
(add-after 'install 'install-extras
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
(share (string-append out "/share"))
|
|
(syntax.d (string-append share "/syntax.d"))
|
|
(etc (string-append out "/etc")))
|
|
(mkdir-p syntax.d)
|
|
(copy-recursively "syntax.d" syntax.d)
|
|
(rename-file "config_example.ini" "config.ini")
|
|
(install-file "config.ini" etc)))))))
|
|
(home-page "https://github.com/ilai-deutel/kibi")
|
|
(synopsis "Featureful text editor in less than 1024 lines of code")
|
|
(description
|
|
"Inspired by the kilo text editor in C, this package provides a text
|
|
editor in less than 1024 lines of code with syntax higlighting, search and
|
|
more.")
|
|
(license (list license:expat license:asl2.0))))
|
|
|
|
(define-public maturin
|
|
(package
|
|
(name "maturin")
|
|
(version "1.1.0")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (crate-uri "maturin" version))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"0asdljd396kdsvnx9kbsr5s0x6w73b59kdpx732333dhm13qgn03"))
|
|
(patches (search-patches "maturin-no-cross-compile.patch"))))
|
|
(build-system cargo-build-system)
|
|
(arguments
|
|
`(#:modules ((guix build cargo-build-system)
|
|
((guix build pyproject-build-system) #:prefix py:)
|
|
(guix build utils))
|
|
#:imported-modules ((guix build cargo-build-system)
|
|
(guix build cargo-utils)
|
|
,@%pyproject-build-system-modules)
|
|
#:install-source? #f
|
|
#:cargo-test-flags
|
|
'("--release" "--"
|
|
;; Not all files are included.
|
|
"--skip=build_options::test::test_find_bridge_bin"
|
|
"--skip=build_options::test::test_find_bridge_cffi"
|
|
"--skip=build_options::test::test_find_bridge_pyo3"
|
|
"--skip=build_options::test::test_find_bridge_pyo3_abi3"
|
|
"--skip=build_options::test::test_find_bridge_pyo3_feature"
|
|
"--skip=metadata::test::test_implicit_readme"
|
|
"--skip=metadata::test::test_merge_metadata_from_pyproject_dynamic_license_test"
|
|
"--skip=metadata::test::test_merge_metadata_from_pyproject_toml"
|
|
"--skip=metadata::test::test_merge_metadata_from_pyproject_toml_with_customized_python_source_dir"
|
|
"--skip=pyproject_toml::tests::test_warn_missing_maturin_version")
|
|
#:cargo-inputs
|
|
(("rust-anyhow" ,rust-anyhow-1)
|
|
("rust-base64" ,rust-base64-0.21)
|
|
("rust-bytesize" ,rust-bytesize-1)
|
|
("rust-cargo-config2" ,rust-cargo-config2-0.1)
|
|
("rust-cargo-options" ,rust-cargo-options-0.6)
|
|
;("rust-cargo-xwin" ,rust-cargo-xwin-0.14)
|
|
;("rust-cargo-zigbuild" ,rust-cargo-zigbuild-0.16)
|
|
("rust-cargo-metadata" ,rust-cargo-metadata-0.15)
|
|
("rust-cbindgen" ,rust-cbindgen-0.24)
|
|
("rust-cc" ,rust-cc-1)
|
|
("rust-clap" ,rust-clap-4)
|
|
("rust-clap-complete-command" ,rust-clap-complete-command-0.5)
|
|
("rust-configparser" ,rust-configparser-3)
|
|
("rust-console" ,rust-console-0.15)
|
|
("rust-dialoguer" ,rust-dialoguer-0.10)
|
|
("rust-dirs" ,rust-dirs-5)
|
|
("rust-dunce" ,rust-dunce-1)
|
|
("rust-fat-macho" ,rust-fat-macho-0.4)
|
|
("rust-flate2" ,rust-flate2-1)
|
|
("rust-fs-err" ,rust-fs-err-2)
|
|
("rust-glob" ,rust-glob-0.3)
|
|
("rust-goblin" ,rust-goblin-0.6)
|
|
("rust-ignore" ,rust-ignore-0.4)
|
|
("rust-indexmap" ,rust-indexmap-1)
|
|
("rust-itertools" ,rust-itertools-0.10)
|
|
("rust-keyring" ,rust-keyring-2)
|
|
("rust-lddtree" ,rust-lddtree-0.3)
|
|
("rust-minijinja" ,rust-minijinja-0.34)
|
|
("rust-multipart" ,rust-multipart-0.18)
|
|
("rust-native-tls" ,rust-native-tls-0.2)
|
|
("rust-normpath" ,rust-normpath-1)
|
|
("rust-once-cell" ,rust-once-cell-1)
|
|
("rust-pep440-rs" ,rust-pep440-rs-0.3)
|
|
("rust-pep508-rs" ,rust-pep508-rs-0.2)
|
|
("rust-platform-info" ,rust-platform-info-2)
|
|
("rust-pyproject-toml" ,rust-pyproject-toml-0.6)
|
|
("rust-python-pkginfo" ,rust-python-pkginfo-0.5)
|
|
("rust-regex" ,rust-regex-1)
|
|
("rust-rustc-version" ,rust-rustc-version-0.4)
|
|
("rust-rustls" ,rust-rustls-0.20)
|
|
("rust-rustls-pemfile" ,rust-rustls-pemfile-1)
|
|
("rust-same-file" ,rust-same-file-1)
|
|
("rust-semver" ,rust-semver-1)
|
|
("rust-serde" ,rust-serde-1)
|
|
("rust-serde-json" ,rust-serde-json-1)
|
|
("rust-sha2" ,rust-sha2-0.10)
|
|
("rust-tar" ,rust-tar-0.4)
|
|
("rust-target-lexicon" ,rust-target-lexicon-0.12)
|
|
("rust-tempfile" ,rust-tempfile-3)
|
|
("rust-textwrap" ,rust-textwrap-0.16)
|
|
("rust-thiserror" ,rust-thiserror-1)
|
|
("rust-time" ,rust-time-0.3)
|
|
("rust-toml" ,rust-toml-0.7)
|
|
("rust-toml-edit" ,rust-toml-edit-0.19)
|
|
("rust-tracing" ,rust-tracing-0.1)
|
|
("rust-tracing-subscriber" ,rust-tracing-subscriber-0.3)
|
|
("rust-ureq" ,rust-ureq-2)
|
|
("rust-url" ,rust-url-2)
|
|
("rust-wild" ,rust-wild-2)
|
|
("rust-zip" ,rust-zip-0.6))
|
|
#:cargo-development-inputs
|
|
(("rust-indoc" ,rust-indoc-2)
|
|
("rust-pretty-assertions" ,rust-pretty-assertions-1)
|
|
("rust-rustversion" ,rust-rustversion-1)
|
|
("rust-time" ,rust-time-0.3)
|
|
("rust-trycmd" ,rust-trycmd-0.14)
|
|
("rust-which" ,rust-which-4))
|
|
#:phases
|
|
(modify-phases %standard-phases
|
|
(add-after 'build 'build-python-module
|
|
(lambda _
|
|
;; Match the features from the cargo-build-system and Cargo.toml.
|
|
(setenv "MATURIN_SETUP_ARGS" "--features=default")
|
|
((assoc-ref py:%standard-phases 'build))))
|
|
|
|
;; We can't use the pyproject install phase because maturin is a
|
|
;; binary, not a python script.
|
|
(add-after 'install 'install-python-module
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
(let ((out (assoc-ref outputs "out"))
|
|
(wheel (car (find-files "dist" "\\.whl$")))
|
|
(site-dir (py:site-packages inputs outputs))
|
|
(pyversion
|
|
(string-append "python"
|
|
(py:python-version
|
|
(assoc-ref inputs "python-wrapper")))))
|
|
(invoke "python" "-m" "zipfile" "-e" wheel site-dir)
|
|
(mkdir-p (string-append out "/bin"))
|
|
(for-each delete-file
|
|
(find-files (string-append out "/lib/" pyversion)
|
|
"^maturin$")))))
|
|
(add-after 'install 'install-completions
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
(share (string-append out "/share"))
|
|
(maturin (string-append out "/bin/maturin")))
|
|
;; TODO? fig, nushell, powershell
|
|
(mkdir-p (string-append share "/bash-completion/completions"))
|
|
(with-output-to-file
|
|
(string-append share "/bash-completion/completions/maturin")
|
|
(lambda _ (invoke maturin "completions" "bash")))
|
|
(mkdir-p (string-append share "/fish/vendor_completions.d"))
|
|
(with-output-to-file
|
|
(string-append share "/fish/vendor_completions.d/maturin.fish")
|
|
(lambda _ (invoke maturin "completions" "fish")))
|
|
(mkdir-p (string-append share "/zsh/site-functions"))
|
|
(with-output-to-file
|
|
(string-append share "/zsh/site-functions/_maturin")
|
|
(lambda _ (invoke maturin "completions" "zsh")))
|
|
(mkdir-p (string-append share "/elvish/lib"))
|
|
(with-output-to-file
|
|
(string-append share "/elvish/lib/maturin")
|
|
(lambda _ (invoke maturin "completions" "elvish")))))))))
|
|
(propagated-inputs
|
|
(list python-tomli))
|
|
(inputs (list bzip2))
|
|
(native-inputs
|
|
(list perl
|
|
python-wheel
|
|
python-wrapper
|
|
python-setuptools-rust))
|
|
(home-page "https://github.com/pyo3/maturin")
|
|
(synopsis "Build and publish crates and python packages")
|
|
(description
|
|
"Build and publish crates with @code{pyo3}, @code{rust-cpython} and
|
|
@code{cffi} bindings as well as rust binaries as python packages.")
|
|
(license (list license:expat license:asl2.0))))
|
|
|
|
(define-public ripgrep
|
|
(package
|
|
(name "ripgrep")
|
|
(version "13.0.0")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (crate-uri "ripgrep" version))
|
|
(file-name
|
|
(string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"1gv4imhjgxmyxaa996yshcjlakmrjw9pf4rycp90pq675cn9sz7k"))))
|
|
(build-system cargo-build-system)
|
|
(arguments
|
|
`(#:cargo-inputs
|
|
(("rust-bstr" ,rust-bstr-0.2)
|
|
("rust-clap" ,rust-clap-2)
|
|
("rust-grep" ,rust-grep-0.2)
|
|
("rust-ignore" ,rust-ignore-0.4)
|
|
("rust-jemallocator" ,rust-jemallocator-0.3)
|
|
("rust-lazy-static" ,rust-lazy-static-1)
|
|
("rust-log" ,rust-log-0.4)
|
|
("rust-num-cpus" ,rust-num-cpus-1)
|
|
("rust-regex" ,rust-regex-1)
|
|
("rust-serde-json" ,rust-serde-json-1)
|
|
("rust-termcolor" ,rust-termcolor-1))
|
|
#:cargo-development-inputs
|
|
(("rust-serde" ,rust-serde-1)
|
|
("rust-serde-derive" ,rust-serde-derive-1)
|
|
("rust-walkdir" ,rust-walkdir-2))
|
|
#:modules ((ice-9 match)
|
|
(guix build cargo-build-system)
|
|
(guix build utils))
|
|
#:install-source? #f
|
|
#:phases
|
|
(modify-phases %standard-phases
|
|
(add-after 'build 'install-manpage
|
|
;; NOTE: This is done before 'check so that there's only one output
|
|
;; directory with the man page.
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
(match (find-files "target" "^rg\\.1$")
|
|
((manpage)
|
|
(install-file manpage (string-append
|
|
(assoc-ref outputs "out")
|
|
"/share/man/man1"))))
|
|
#t)))
|
|
#:features '("pcre2")))
|
|
(inputs
|
|
(list pcre2))
|
|
(native-inputs
|
|
(list asciidoc pkg-config))
|
|
(home-page "https://github.com/BurntSushi/ripgrep")
|
|
(synopsis "Line-oriented search tool")
|
|
(description
|
|
"ripgrep is a line-oriented search tool that recursively searches
|
|
your current directory for a regex pattern while respecting your
|
|
gitignore rules.")
|
|
(license (list license:unlicense license:expat))))
|
|
|
|
(define-public rot8
|
|
(package
|
|
(name "rot8")
|
|
(version "0.1.4")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (crate-uri "rot8" version))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"1m5kzpqq9pgc19lbnh20iaq654lzlmc1m5fc9f73w2vpwqdiw1qf"))))
|
|
(build-system cargo-build-system)
|
|
(arguments
|
|
`(#:cargo-inputs (("rust-clap" ,rust-clap-2)
|
|
("rust-glob" ,rust-glob-0.3)
|
|
("rust-regex" ,rust-regex-1)
|
|
("rust-serde" ,rust-serde-1)
|
|
("rust-serde-json" ,rust-serde-json-1))))
|
|
(home-page "https://github.com/efernau/rot8/")
|
|
(synopsis "Automatic display rotation using built-in accelerometer")
|
|
(description "@command{rot8} is a daemon that automates rotating screen and
|
|
associated input devices using the built-in accelerometer; handy for convertible
|
|
touchscreen devices.")
|
|
(license license:expat)))
|
|
|
|
(define-public rust-swc
|
|
(package
|
|
(name "rust-swc")
|
|
(version "1.2.124")
|
|
(source
|
|
(origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://github.com/swc-project/swc")
|
|
(commit (string-append "v" version))))
|
|
(file-name (git-file-name name version))
|
|
(sha256
|
|
(base32
|
|
"1cb65vl437sy7shflsazi2k4sz53v3r85dj8rb32ny1j6njczj4h"))
|
|
(modules '((guix build utils)))
|
|
(snippet
|
|
'(begin (substitute* (find-files "." "^Cargo\\.toml$")
|
|
(("\"=([[:digit:]]+(\\.[[:digit:]]+)*)" _ version)
|
|
(string-append "\"^" version)))))))
|
|
(build-system cargo-build-system)
|
|
(arguments
|
|
`(#:install-source? #f
|
|
#:cargo-build-flags
|
|
'("--release" "-p" "swc_cli")
|
|
#:cargo-test-flags
|
|
'("--release" "-p" "swc_cli")
|
|
#:cargo-inputs
|
|
(("rust-abi-stable" ,rust-abi-stable-0.10)
|
|
("rust-ahash" ,rust-ahash-0.7)
|
|
("rust-ansi-term" ,rust-ansi-term-0.12)
|
|
("rust-anyhow" ,rust-anyhow-1)
|
|
("rust-arrayvec" ,rust-arrayvec-0.5)
|
|
("rust-arbitrary" ,rust-arbitrary-1)
|
|
("rust-auto-impl" ,rust-auto-impl-0.5)
|
|
("rust-auto-impl" ,rust-auto-impl-0.4)
|
|
("rust-backtrace" ,rust-backtrace-0.3)
|
|
("rust-bincode" ,rust-bincode-1)
|
|
("rust-bitflags" ,rust-bitflags-1)
|
|
("rust-browserslist-rs" ,rust-browserslist-rs-0.6)
|
|
("rust-cfg-if" ,rust-cfg-if-0.1)
|
|
("rust-console-error-panic-hook" ,rust-console-error-panic-hook-0.1)
|
|
("rust-copyless" ,rust-copyless-0.1)
|
|
("rust-crc" ,rust-crc-1)
|
|
("rust-darling" ,rust-darling-0.10)
|
|
("rust-dashmap" ,rust-dashmap-4)
|
|
("rust-debug-unreachable" ,rust-debug-unreachable-0.1)
|
|
("rust-difference" ,rust-difference-2)
|
|
("rust-either" ,rust-either-1)
|
|
("rust-glob" ,rust-glob-0.3)
|
|
("rust-hex" ,rust-hex-0.4)
|
|
("rust-indexmap" ,rust-indexmap-1)
|
|
("rust-inflector" ,rust-inflector-0.11)
|
|
("rust-is-macro" ,rust-is-macro-0.1)
|
|
("rust-lexical" ,rust-lexical-5)
|
|
("rust-libloading" ,rust-libloading-0.7)
|
|
("rust-lru" ,rust-lru-0.7)
|
|
("rust-mimalloc-rust" ,rust-mimalloc-rust-0.1)
|
|
("rust-napi" ,rust-napi-2)
|
|
("rust-napi-build" ,rust-napi-build-1)
|
|
("rust-napi-derive" ,rust-napi-derive-2)
|
|
("rust-nom" ,rust-nom-5)
|
|
("rust-normpath" ,rust-normpath-0.2)
|
|
("rust-num-bigint" ,rust-num-bigint-0.2)
|
|
("rust-once-cell" ,rust-once-cell-1)
|
|
("rust-ordered-float" ,rust-ordered-float-2)
|
|
("rust-owning-ref" ,rust-owning-ref-0.4)
|
|
("rust-parking-lot" ,rust-parking-lot-0.11)
|
|
("rust-parking-lot" ,rust-parking-lot-0.7)
|
|
("rust-parking-lot-core" ,rust-parking-lot-core-0.8)
|
|
("rust-path-clean" ,rust-path-clean-0.1)
|
|
("rust-paw" ,rust-paw-1)
|
|
("rust-petgraph" ,rust-petgraph-0.5)
|
|
("rust-phf" ,rust-phf-0.8)
|
|
("rust-pmutil" ,rust-pmutil-0.5)
|
|
("rust-pretty-assertions" ,rust-pretty-assertions-0.7)
|
|
("rust-pretty-assertions" ,rust-pretty-assertions-0.6)
|
|
("rust-proc-macro2" ,rust-proc-macro2-1)
|
|
("rust-quote" ,rust-quote-1)
|
|
("rust-rayon" ,rust-rayon-1)
|
|
("rust-radix-fmt" ,rust-radix-fmt-1)
|
|
("rust-regex" ,rust-regex-1)
|
|
("rust-relative-path" ,rust-relative-path-1)
|
|
("rust-retain-mut" ,rust-retain-mut-0.1)
|
|
("rust-rustc-hash" ,rust-rustc-hash-1)
|
|
("rust-scoped-tls" ,rust-scoped-tls-1)
|
|
("rust-semver" ,rust-semver-0.9)
|
|
("rust-serde" ,rust-serde-1)
|
|
("rust-serde-json" ,rust-serde-json-1)
|
|
("rust-serde-regex" ,rust-serde-regex-1)
|
|
("rust-sha-1" ,rust-sha-1-0.9)
|
|
("rust-smallvec" ,rust-smallvec-1)
|
|
("rust-sourcemap" ,rust-sourcemap-6)
|
|
("rust-st-map" ,rust-st-map-0.1)
|
|
("rust-string-cache" ,rust-string-cache-0.8)
|
|
("rust-string-cache-codegen" ,rust-string-cache-codegen-0.5)
|
|
("rust-structopt" ,rust-structopt-0.3)
|
|
("rust-syn" ,rust-syn-1)
|
|
("rust-termcolor" ,rust-termcolor-1)
|
|
("rust-tracing" ,rust-tracing-0.1)
|
|
("rust-tracing-subscriber" ,rust-tracing-subscriber-0.3)
|
|
("rust-typed-arena" ,rust-typed-arena-2)
|
|
("rust-walkdir" ,rust-walkdir-2)
|
|
("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2)
|
|
("rust-wasm-bindgen-futures" ,rust-wasm-bindgen-futures-0.4)
|
|
("rust-unicode-width" ,rust-unicode-width-0.1)
|
|
("rust-unicode-xid" ,rust-unicode-xid-0.2)
|
|
("rust-url" ,rust-url-2))
|
|
#:cargo-development-inputs
|
|
(("rust-ansi-term" ,rust-ansi-term-0.12)
|
|
("rust-anyhow" ,rust-anyhow-1)
|
|
("rust-dashmap" ,rust-dashmap-4)
|
|
("rust-env-logger" ,rust-env-logger-0.7)
|
|
("rust-hex" ,rust-hex-0.4)
|
|
("rust-ntest" ,rust-ntest-0.7)
|
|
("rust-path-clean" ,rust-path-clean-0.1)
|
|
("rust-pretty-assertions" ,rust-pretty-assertions-0.7)
|
|
("rust-pretty-assertions" ,rust-pretty-assertions-0.6)
|
|
("rust-reqwest" ,rust-reqwest-0.11)
|
|
("rust-serde" ,rust-serde-1)
|
|
("rust-serde-json" ,rust-serde-json-1)
|
|
("rust-sha-1" ,rust-sha-1-0.9)
|
|
("rust-sourcemap" ,rust-sourcemap-6)
|
|
("rust-tempfile" ,rust-tempfile-3)
|
|
("rust-url" ,rust-url-2)
|
|
("rust-walkdir" ,rust-walkdir-2))
|
|
#:phases
|
|
(modify-phases %standard-phases
|
|
(replace 'install
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
(bin (string-append out "/bin"))
|
|
(swc (car (find-files "target" "^swc$"))))
|
|
(install-file swc bin)))))))
|
|
(home-page "https://swc.rs/")
|
|
(synopsis "Typescript/javascript compiler")
|
|
(description "@code{rust-swc} is a typescript/javascript compiler. It
|
|
consumes a javascript or typescript file which uses recently added features
|
|
like async-await and emits javascript code which can be executed on old
|
|
browsers.")
|
|
(license (list license:expat
|
|
license:asl2.0))))
|
|
|
|
(define-deprecated rust-swc-1 rust-swc)
|
|
|
|
(define-public rust-cargo-edit
|
|
(package
|
|
(name "rust-cargo-edit")
|
|
(version "0.10.4")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (crate-uri "cargo-edit" version))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"19wfjz7z4kqjfjmnq1bl6dhsvskjy6r656fqmbha9dfdspbsnmd0"))))
|
|
(build-system cargo-build-system)
|
|
(arguments
|
|
`(#:install-source? #f
|
|
;; error[E0463]: can't find crate for `cargo_test_macro`
|
|
#:tests? #f
|
|
#:cargo-inputs
|
|
(("rust-anyhow" ,rust-anyhow-1)
|
|
("rust-cargo-metadata" ,rust-cargo-metadata-0.15)
|
|
("rust-clap" ,rust-clap-3)
|
|
("rust-concolor-control" ,rust-concolor-control-0.0.7)
|
|
("rust-crates-index" ,rust-crates-index-0.18)
|
|
("rust-dirs-next" ,rust-dirs-next-2)
|
|
("rust-dunce" ,rust-dunce-1)
|
|
("rust-env-proxy" ,rust-env-proxy-0.4)
|
|
("rust-git2" ,rust-git2-0.14)
|
|
("rust-hex" ,rust-hex-0.4)
|
|
("rust-indexmap" ,rust-indexmap-1)
|
|
("rust-native-tls" ,rust-native-tls-0.2)
|
|
("rust-pathdiff" ,rust-pathdiff-0.2)
|
|
("rust-regex" ,rust-regex-1)
|
|
("rust-semver" ,rust-semver-1)
|
|
("rust-serde" ,rust-serde-1)
|
|
("rust-serde-derive" ,rust-serde-derive-1)
|
|
("rust-serde-json" ,rust-serde-json-1)
|
|
("rust-subprocess" ,rust-subprocess-0.2)
|
|
("rust-termcolor" ,rust-termcolor-1)
|
|
("rust-toml-edit" ,rust-toml-edit-0.14)
|
|
("rust-ureq" ,rust-ureq-2)
|
|
("rust-url" ,rust-url-2))
|
|
#:cargo-development-inputs
|
|
(("rust-assert-cmd" ,rust-assert-cmd-2)
|
|
("rust-assert-fs" ,rust-assert-fs-1)
|
|
("rust-predicates" ,rust-predicates-2)
|
|
("rust-snapbox" ,rust-snapbox-0.2)
|
|
("rust-trycmd" ,rust-trycmd-0.13)
|
|
("rust-url" ,rust-url-2))
|
|
#:phases
|
|
(modify-phases %standard-phases
|
|
(add-after 'unpack 'dont-default-to-vendored-libgit2
|
|
(lambda _
|
|
(substitute* "Cargo.toml"
|
|
((".*\"vendored-libgit2\".*") "")))))))
|
|
(native-inputs
|
|
(list perl pkg-config))
|
|
(inputs
|
|
(list libgit2-1.4
|
|
libssh2
|
|
openssl
|
|
zlib))
|
|
(home-page "https://github.com/killercup/cargo-edit")
|
|
(synopsis "Add and remove dependencies from the command line")
|
|
(description
|
|
"This package extends Cargo to allow you to add and remove dependencies
|
|
by modifying your @file{Cargo.toml} file from the command line.")
|
|
(license (list license:asl2.0 license:expat))))
|
|
|
|
(define-deprecated rust-cargo-edit-0.8 rust-cargo-edit)
|
|
|
|
(define-public git-interactive-rebase-tool
|
|
(package
|
|
(name "git-interactive-rebase-tool")
|
|
(version "2.1.0")
|
|
(source
|
|
(origin
|
|
;; crates.io does not provide the test data.
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://github.com/mitmaro/git-interactive-rebase-tool")
|
|
(commit version)))
|
|
(file-name (git-file-name name version))
|
|
(sha256
|
|
(base32
|
|
"173spqqpyc00kvfmldjmjfqizh9b4spq4xw4bskd4dny8qcpz28d"))))
|
|
(build-system cargo-build-system)
|
|
(arguments
|
|
`(#:cargo-test-flags
|
|
;; https://github.com/MitMaro/git-interactive-rebase-tool/issues/586
|
|
'("--release" "--" "--skip=tests::success")
|
|
#:cargo-inputs
|
|
(("rust-anyhow" ,rust-anyhow-1)
|
|
("rust-chrono" ,rust-chrono-0.4)
|
|
("rust-clap" ,rust-clap-2)
|
|
("rust-crossterm" ,rust-crossterm-0.19)
|
|
("rust-git2" ,rust-git2-0.13)
|
|
("rust-num-format" ,rust-num-format-0.4)
|
|
("rust-unicode-segmentation" ,rust-unicode-segmentation-1)
|
|
("rust-unicode-width" ,rust-unicode-width-0.1)
|
|
("rust-xi-unicode" ,rust-xi-unicode-0.3))
|
|
#:cargo-development-inputs
|
|
(("rust-concat-idents" ,rust-concat-idents-1)
|
|
("rust-lazy-static" ,rust-lazy-static-1)
|
|
("rust-rstest" ,rust-rstest-0.6)
|
|
("rust-serial-test" ,rust-serial-test-0.5)
|
|
("rust-tempfile" ,rust-tempfile-3))))
|
|
(native-inputs
|
|
(list pkg-config))
|
|
(inputs
|
|
(list libgit2-1.3 zlib))
|
|
(home-page "https://gitrebasetool.mitmaro.ca/")
|
|
(synopsis "Terminal based sequence editor for git interactive rebase")
|
|
(description
|
|
"This application is a terminal-based sequence editor for git interactive
|
|
rebase.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public rust-cbindgen
|
|
(package
|
|
(name "rust-cbindgen")
|
|
(version "0.13.2")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (crate-uri "cbindgen" version))
|
|
(file-name (string-append name "-" version ".tar.xz"))
|
|
(sha256
|
|
(base32
|
|
"0673pq96hs7waavkv58v2pakpxpsfyjvbraa5kyl2b44phgdzcid"))))
|
|
(build-system cargo-build-system)
|
|
(arguments
|
|
`(#:cargo-inputs
|
|
(("clap" ,rust-clap-2)
|
|
("log" ,rust-log-0.4)
|
|
("proc-macro2" ,rust-proc-macro2-1)
|
|
("quote" ,rust-quote-1)
|
|
("serde" ,rust-serde-1)
|
|
("serde-json" ,rust-serde-json-1)
|
|
("syn" ,rust-syn-1)
|
|
("tempfile" ,rust-tempfile-3)
|
|
("toml" ,rust-toml-0.5))))
|
|
(home-page "https://github.com/eqrion/cbindgen/")
|
|
(synopsis "Tool for generating C bindings to Rust code")
|
|
(description
|
|
"This package provides a tool for generating C/C++ bindings to Rust code.")
|
|
(license license:mpl2.0)))
|
|
|
|
(define-public rust-cbindgen-0.26
|
|
(package
|
|
(inherit rust-cbindgen)
|
|
(name "rust-cbindgen")
|
|
(version "0.26.0")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (crate-uri "cbindgen" version))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32 "0jdbxmn5h5nlr4bifx85gny309djv5djs9q78fa1d7sj0wdw2sys"))))
|
|
(arguments
|
|
`(#:cargo-inputs (("rust-clap" ,rust-clap-3)
|
|
("rust-heck" ,rust-heck-0.4)
|
|
("rust-indexmap" ,rust-indexmap-1)
|
|
("rust-log" ,rust-log-0.4)
|
|
("rust-proc-macro2" ,rust-proc-macro2-1)
|
|
("rust-quote" ,rust-quote-1)
|
|
("rust-serde" ,rust-serde-1)
|
|
("rust-serde-json" ,rust-serde-json-1)
|
|
("rust-syn" ,rust-syn-1)
|
|
("rust-tempfile" ,rust-tempfile-3)
|
|
("rust-toml" ,rust-toml-0.5))
|
|
#:cargo-development-inputs (("rust-serial-test" ,rust-serial-test-0.5))))
|
|
(native-inputs (list python-cython))))
|
|
|
|
(define-public rust-cbindgen-0.24
|
|
(package
|
|
(inherit rust-cbindgen-0.26)
|
|
(name "rust-cbindgen")
|
|
(version "0.24.3")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (crate-uri "cbindgen" version))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"1yqxqsz2d0cppd8zwihk2139g5gy38wqgl9snj6rnk8gyvnqsdd6"))))))
|
|
|
|
(define-public rust-cbindgen-0.23
|
|
(package
|
|
(inherit rust-cbindgen-0.24)
|
|
(name "rust-cbindgen")
|
|
(version "0.23.0")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (crate-uri "cbindgen" version))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"006rn3fn4njayjxr2vd24g1awssr9i3894nbmfzkybx07j728vav"))))))
|
|
|
|
(define-public sniffglue
|
|
(package
|
|
(name "sniffglue")
|
|
(version "0.15.0")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (crate-uri "sniffglue" version))
|
|
(file-name
|
|
(string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"038wcjiiay825wc8inmn62flklc1adxskg5fmjhmxqnhwmj1k5gn"))))
|
|
(build-system cargo-build-system)
|
|
(arguments
|
|
`(#:cargo-inputs
|
|
(("rust-ansi-term" ,rust-ansi-term-0.12)
|
|
("rust-anyhow" ,rust-anyhow-1)
|
|
("rust-atty" ,rust-atty-0.2)
|
|
("rust-base64" ,rust-base64-0.13)
|
|
("rust-bstr" ,rust-bstr-0.2)
|
|
("rust-dhcp4r" ,rust-dhcp4r-0.2)
|
|
("rust-dirs-next" ,rust-dirs-next-2)
|
|
("rust-dns-parser" ,rust-dns-parser-0.8)
|
|
("rust-env-logger" ,rust-env-logger-0.9)
|
|
("rust-libc" ,rust-libc-0.2)
|
|
("rust-log" ,rust-log-0.4)
|
|
("rust-nix" ,rust-nix-0.23)
|
|
("rust-nom" ,rust-nom-7)
|
|
("rust-num-cpus" ,rust-num-cpus-1)
|
|
("rust-pcap-sys" ,rust-pcap-sys-0.1)
|
|
("rust-pktparse" ,rust-pktparse-0.7)
|
|
("rust-reduce" ,rust-reduce-0.1)
|
|
("rust-serde" ,rust-serde-1)
|
|
("rust-serde-derive" ,rust-serde-derive-1)
|
|
("rust-serde-json" ,rust-serde-json-1)
|
|
("rust-sha2" ,rust-sha2-0.10)
|
|
("rust-structopt" ,rust-structopt-0.3)
|
|
("rust-syscallz" ,rust-syscallz-0.16)
|
|
("rust-tls-parser" ,rust-tls-parser-0.11)
|
|
("rust-toml" ,rust-toml-0.5)
|
|
("rust-users" ,rust-users-0.11))
|
|
#:cargo-development-inputs
|
|
(("rust-boxxy" ,rust-boxxy-0.12))))
|
|
(inputs
|
|
(list libpcap libseccomp))
|
|
(native-inputs
|
|
(list perl))
|
|
(home-page "https://github.com/kpcyrd/sniffglue")
|
|
(synopsis "Secure multithreaded packet sniffer")
|
|
(description
|
|
"This package provides a network sniffer written in Rust. Packets
|
|
are parsed concurrently using a thread pool to utilize all cpu cores. A goal
|
|
of the project is to be runnable on untrusted networks without crashing.")
|
|
(license license:gpl3)))
|
|
|
|
(define-public tectonic
|
|
(package
|
|
(name "tectonic")
|
|
(version "0.12.0")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (crate-uri "tectonic" version))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32 "1q4mz2c32gfypx33zlzgd1q9h4322jrk13fzvsf8h676ylclqzpc"))))
|
|
(build-system cargo-build-system)
|
|
(arguments
|
|
`(#:install-source? #f
|
|
#:cargo-inputs
|
|
(("rust-atty" ,rust-atty-0.2)
|
|
("rust-byte-unit" ,rust-byte-unit-4)
|
|
("rust-cfg-if" ,rust-cfg-if-1)
|
|
("rust-error-chain" ,rust-error-chain-0.12)
|
|
("rust-flate2" ,rust-flate2-1)
|
|
("rust-fs2" ,rust-fs2-0.4)
|
|
("rust-lazy-static" ,rust-lazy-static-1)
|
|
("rust-libc" ,rust-libc-0.2)
|
|
("rust-md-5" ,rust-md-5-0.9)
|
|
("rust-open" ,rust-open-1)
|
|
("rust-quick-xml" ,rust-quick-xml-0.22)
|
|
("rust-serde" ,rust-serde-1)
|
|
("rust-sha2" ,rust-sha2-0.9)
|
|
("rust-structopt" ,rust-structopt-0.3)
|
|
("rust-tectonic-bridge-core" ,rust-tectonic-bridge-core-0.3)
|
|
("rust-tectonic-bundles" ,rust-tectonic-bundles-0.3)
|
|
("rust-tectonic-docmodel" ,rust-tectonic-docmodel-0.2)
|
|
("rust-tectonic-engine-bibtex" ,rust-tectonic-engine-bibtex-0.1)
|
|
("rust-tectonic-engine-spx2html" ,rust-tectonic-engine-spx2html-0.1)
|
|
("rust-tectonic-engine-xdvipdfmx" ,rust-tectonic-engine-xdvipdfmx-0.4)
|
|
("rust-tectonic-engine-xetex" ,rust-tectonic-engine-xetex-0.4)
|
|
("rust-tectonic-errors" ,rust-tectonic-errors-0.2)
|
|
("rust-tectonic-geturl" ,rust-tectonic-geturl-0.3)
|
|
("rust-tectonic-io-base" ,rust-tectonic-io-base-0.4)
|
|
("rust-tectonic-status-base" ,rust-tectonic-status-base-0.2)
|
|
("rust-tectonic-xdv" ,rust-tectonic-xdv-0.2)
|
|
("rust-tempfile" ,rust-tempfile-3)
|
|
("rust-termcolor" ,rust-termcolor-1)
|
|
("rust-toml" ,rust-toml-0.5)
|
|
("rust-url" ,rust-url-2)
|
|
("rust-watchexec" ,rust-watchexec-1)
|
|
("rust-zip" ,rust-zip-0.5))
|
|
#:cargo-development-inputs
|
|
(("rust-filetime" ,rust-filetime-0.2)
|
|
("rust-futures" ,rust-futures-0.1)
|
|
("rust-headers" ,rust-headers-0.2)
|
|
("rust-hyper" ,rust-hyper-0.12)
|
|
("rust-tempfile" ,rust-tempfile-3)
|
|
("rust-tokio" ,rust-tokio-0.1))
|
|
#:phases
|
|
(modify-phases %standard-phases
|
|
(add-after 'install 'install-doc
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
(doc (string-append out "/share/doc/" ,name "-" ,version)))
|
|
(copy-recursively "docs/src" doc)))))))
|
|
(native-inputs
|
|
(list pkg-config))
|
|
(inputs
|
|
(list fontconfig
|
|
freetype
|
|
graphite2
|
|
harfbuzz
|
|
icu4c
|
|
libpng
|
|
openssl
|
|
zlib))
|
|
(home-page "https://tectonic-typesetting.github.io/")
|
|
(synopsis "Complete, embeddable TeX/LaTeX engine")
|
|
(description
|
|
"This package provides a modernized, complete, embeddable
|
|
TeX/LaTeX engine. Tectonic is forked from the XeTeX extension to the
|
|
classic Web2C implementation of TeX and uses the TeXLive distribution
|
|
of support files.")
|
|
(license license:expat)))
|
|
|
|
(define-public treefmt
|
|
(package
|
|
(name "treefmt")
|
|
(version "0.4.1")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (crate-uri "treefmt" version))
|
|
(file-name
|
|
(string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32 "1rarg6rffzl1cf6r167h9p14wr696kwnzr85kwbdy7x7x5zpj5li"))))
|
|
(build-system cargo-build-system)
|
|
(arguments
|
|
`(#:install-source? #f
|
|
#:cargo-inputs
|
|
(("rust-anyhow" ,rust-anyhow-1)
|
|
("rust-console" ,rust-console-0.13)
|
|
("rust-directories" ,rust-directories-3)
|
|
("rust-filetime" ,rust-filetime-0.2)
|
|
("rust-globset" ,rust-globset-0.4)
|
|
("rust-ignore" ,rust-ignore-0.4)
|
|
("rust-log" ,rust-log-0.4)
|
|
("rust-path-clean" ,rust-path-clean-0.1)
|
|
("rust-rayon" ,rust-rayon-1)
|
|
("rust-serde" ,rust-serde-1)
|
|
("rust-serde-json" ,rust-serde-json-1)
|
|
("rust-sha-1" ,rust-sha-1-0.9)
|
|
("rust-structopt" ,rust-structopt-0.3)
|
|
("rust-tempfile" ,rust-tempfile-3)
|
|
("rust-toml" ,rust-toml-0.5)
|
|
("rust-which" ,rust-which-4))
|
|
#:cargo-development-inputs
|
|
(("rust-criterion" ,rust-criterion-0.3))))
|
|
(home-page "https://numtide.github.io/treefmt")
|
|
(synopsis "Command-line application to format the code tree")
|
|
(description
|
|
"This application provides a way to unify the formatting process of the
|
|
codebase. It is nice for large code trees where using multiple formatters are
|
|
common. @command{treefmt} comes with the following features.
|
|
|
|
@itemize
|
|
@item Unified CLI and output.
|
|
@item Runs formatters in parallel.
|
|
@item Cache changed files for performance.
|
|
@end itemize
|
|
|
|
The application does have some design decisions to keep in mind.
|
|
|
|
@itemize
|
|
@item The source code is kept under version control, making it possible to
|
|
revert and check changes.
|
|
@item Only one formatter per file, making outputs idempotent.
|
|
@end itemize")
|
|
(license license:expat)))
|
|
|
|
(define-public hex
|
|
(package
|
|
(name "hex")
|
|
(version "0.4.2")
|
|
(source
|
|
(origin
|
|
;; crates.io does not provide the test data.
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://github.com/sitkevij/hex")
|
|
(commit (string-append "v" version))))
|
|
(file-name (git-file-name name version))
|
|
(sha256
|
|
(base32 "03x27nixdlnkkrh85gy4152arp02kpjwq0i9dn9p73lyr24s64lv"))))
|
|
(build-system cargo-build-system)
|
|
(arguments
|
|
`(#:cargo-inputs
|
|
(("rust-ansi-term" ,rust-ansi-term-0.12)
|
|
("rust-atty" ,rust-atty-0.2)
|
|
("rust-clap" ,rust-clap-2)
|
|
("rust-no-color" ,rust-no-color-0.1))
|
|
#:cargo-development-inputs
|
|
(("rust-assert-cmd" ,rust-assert-cmd-1))))
|
|
(home-page "https://github.com/sitkevij/hex")
|
|
(synopsis "Hexadecimal colorized view of a file")
|
|
(description
|
|
"@command{hx} accepts a file path as input and outputs a hexadecimal
|
|
colorized view to stdout.")
|
|
(license license:expat)))
|
|
|
|
(define-public tokei
|
|
(package
|
|
(name "tokei")
|
|
(version "12.1.2")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (crate-uri "tokei" version))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32 "000w549v1bpw7r57xw656p40ywf1gimvxxx5cjnri2js0xg927x4"))))
|
|
(build-system cargo-build-system)
|
|
(arguments
|
|
`(#:cargo-inputs
|
|
(("rust-aho-corasick" ,rust-aho-corasick-0.7)
|
|
("rust-clap" ,rust-clap-2)
|
|
("rust-crossbeam-channel" ,rust-crossbeam-channel-0.5)
|
|
("rust-dashmap" ,rust-dashmap-4)
|
|
("rust-dirs" ,rust-dirs-3)
|
|
("rust-encoding-rs-io" ,rust-encoding-rs-io-0.1)
|
|
("rust-env-logger" ,rust-env-logger-0.8)
|
|
("rust-grep-searcher" ,rust-grep-searcher-0.1)
|
|
("rust-hex" ,rust-hex-0.4)
|
|
("rust-ignore" ,rust-ignore-0.4)
|
|
("rust-log" ,rust-log-0.4)
|
|
("rust-num-format" ,rust-num-format-0.4)
|
|
("rust-once-cell" ,rust-once-cell-1)
|
|
("rust-parking-lot" ,rust-parking-lot-0.11)
|
|
("rust-rayon" ,rust-rayon-1)
|
|
("rust-regex" ,rust-regex-1)
|
|
("rust-serde" ,rust-serde-1)
|
|
("rust-serde-cbor" ,rust-serde-cbor-0.11)
|
|
("rust-serde-json" ,rust-serde-json-1)
|
|
("rust-serde-yaml" ,rust-serde-yaml-0.8)
|
|
("rust-tera" ,rust-tera-1)
|
|
("rust-term-size" ,rust-term-size-0.3)
|
|
("rust-toml" ,rust-toml-0.5))
|
|
#:cargo-development-inputs
|
|
(("rust-git2" ,rust-git2-0.13)
|
|
("rust-regex" ,rust-regex-1)
|
|
("rust-tempfile" ,rust-tempfile-3))))
|
|
(native-inputs
|
|
(list pkg-config))
|
|
(inputs
|
|
(list libgit2 openssl zlib))
|
|
(home-page "https://tokei.rs")
|
|
(synopsis "Count code, quickly")
|
|
(description
|
|
"Tokei is a program that displays statistics about your code. Tokei will
|
|
show number of files, total lines within those files and code, comments, and
|
|
blanks grouped by language.")
|
|
(license (list license:expat license:asl2.0))))
|
|
|
|
(define-public vivid
|
|
(package
|
|
(name "vivid")
|
|
(version "0.7.0")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (crate-uri "vivid" version))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32 "01fds6dm19bqgqydaa6n051v9l4wh9rb5d6sr9akwp2cc0fs43b7"))))
|
|
(build-system cargo-build-system)
|
|
(arguments
|
|
`(#:cargo-inputs
|
|
(("rust-ansi-colours" ,rust-ansi-colours-1)
|
|
("rust-clap" ,rust-clap-2)
|
|
("rust-dirs" ,rust-dirs-3)
|
|
("rust-lazy-static" ,rust-lazy-static-1)
|
|
("rust-rust-embed" ,rust-rust-embed-5)
|
|
("rust-yaml-rust" ,rust-yaml-rust-0.4))))
|
|
(home-page "https://github.com/sharkdp/vivid")
|
|
(synopsis "LS_COLORS environment variable manager")
|
|
(description
|
|
"vivid is a generator for the @code{LS_COLORS} environment variable that
|
|
controls the colorized output of ls, tree, fd, bfs, dust and many other tools.
|
|
|
|
It uses a YAML configuration format for the filetype-database and the color
|
|
themes. In contrast to @command{dircolors}, the database and the themes are
|
|
organized in different files. This allows users to choose and customize color
|
|
themes independent from the collection of file extensions. Instead of using
|
|
cryptic ANSI escape codes, colors can be specified in the RRGGBB format and
|
|
will be translated to either truecolor (24-bit) ANSI codes or 8-bit codes for
|
|
older terminal emulators.")
|
|
(license (list license:expat license:asl2.0))))
|
|
|
|
(define-public watchexec
|
|
(package
|
|
(name "watchexec")
|
|
(version "1.16.1")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (crate-uri "watchexec-cli" version))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32 "1wp424gzw1zmax5yy5gya15knl24rjx8gi9c7palvq807q3cnj65"))))
|
|
(build-system cargo-build-system)
|
|
(arguments
|
|
`(#:phases
|
|
(modify-phases %standard-phases
|
|
(add-after 'install 'install-completions
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
(zsh (string-append out "/share/zsh/site-functions/_watchexec"))
|
|
(doc (string-append out "/share/doc/watchexec-" ,version)))
|
|
(mkdir-p (dirname zsh))
|
|
;; FIXME: The crates.io source does not provide zsh
|
|
;; completions. But the GitHub source does not compile.
|
|
;;
|
|
;; (copy-file "completions/zsh" zsh)
|
|
(install-file "README.md" doc)))))
|
|
#:cargo-inputs
|
|
(("rust-clap" ,rust-clap-2)
|
|
("rust-embed-resource" ,rust-embed-resource-1)
|
|
("rust-env-logger" ,rust-env-logger-0.8)
|
|
("rust-log" ,rust-log-0.4)
|
|
("rust-watchexec" ,rust-watchexec-1))
|
|
#:cargo-development-inputs
|
|
(("rust-assert-cmd" ,rust-assert-cmd-1)
|
|
("rust-insta" ,rust-insta-1))))
|
|
(home-page "https://github.com/watchexec/watchexec")
|
|
(synopsis "Executes commands in response to file modifications")
|
|
(description
|
|
"@command{watchexec} is a simple, standalone tool that watches a path and
|
|
runs a command whenever it detects modifications.")
|
|
(license license:asl2.0)))
|
|
|
|
(define-public rbw
|
|
(package
|
|
(name "rbw")
|
|
(version "1.4.1")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (crate-uri "rbw" version))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32 "0zszp9hvilpikbd66b5zbvspks0spv8dh0yry0sxnc5yqvl2ixnf"))))
|
|
(build-system cargo-build-system)
|
|
(arguments
|
|
`(#:phases
|
|
(modify-phases %standard-phases
|
|
(add-after 'configure 'relax-requirements
|
|
(lambda _
|
|
(substitute*
|
|
"guix-vendor/rust-password-hash-0.3.2.tar.gz/Cargo.toml"
|
|
(("version = \">=1, <1.1.0\"") "version = \">=1\""))
|
|
(substitute*
|
|
"guix-vendor/rust-rsa-0.5.0.tar.gz/Cargo.toml"
|
|
(("version = \">=1, <1.5\"") "version = \"^1\""))
|
|
(substitute*
|
|
"Cargo.toml"
|
|
(("version = \"1.4\"") "version = \"^1\"")))))
|
|
#:cargo-inputs
|
|
(("rust-aes" ,rust-aes-0.7)
|
|
("rust-anyhow" ,rust-anyhow-1)
|
|
("rust-arrayvec" ,rust-arrayvec-0.7)
|
|
("rust-async-trait" ,rust-async-trait-0.1)
|
|
("rust-base32" ,rust-base32-0.4)
|
|
("rust-base64" ,rust-base64-0.13)
|
|
("rust-block-modes" ,rust-block-modes-0.8)
|
|
("rust-block-padding" ,rust-block-padding-0.2)
|
|
("rust-daemonize" ,rust-daemonize-0.4)
|
|
("rust-directories" ,rust-directories-4)
|
|
("rust-env-logger" ,rust-env-logger-0.9)
|
|
("rust-hkdf" ,rust-hkdf-0.11)
|
|
("rust-hmac" ,rust-hmac-0.11)
|
|
("rust-humantime" ,rust-humantime-2)
|
|
("rust-libc" ,rust-libc-0.2)
|
|
("rust-log" ,rust-log-0.4)
|
|
("rust-nix" ,rust-nix-0.23)
|
|
("rust-paw" ,rust-paw-1)
|
|
("rust-pbkdf2" ,rust-pbkdf2-0.9)
|
|
("rust-percent-encoding" ,rust-percent-encoding-2)
|
|
("rust-rand" ,rust-rand-0.8)
|
|
("rust-region" ,rust-region-3)
|
|
("rust-reqwest" ,rust-reqwest-0.11)
|
|
("rust-rsa" ,rust-rsa-0.5)
|
|
("rust-serde" ,rust-serde-1)
|
|
("rust-serde-json" ,rust-serde-json-1)
|
|
("rust-serde-path-to-error" ,rust-serde-path-to-error-0.1)
|
|
("rust-serde-repr" ,rust-serde-repr-0.1)
|
|
("rust-sha-1" ,rust-sha-1-0.9)
|
|
("rust-sha2" ,rust-sha2-0.9)
|
|
("rust-structopt" ,rust-structopt-0.3)
|
|
("rust-tempfile" ,rust-tempfile-3)
|
|
("rust-term-size" ,rust-term-size-0.3)
|
|
("rust-textwrap" ,rust-textwrap-0.11)
|
|
("rust-thiserror" ,rust-thiserror-1)
|
|
("rust-tokio" ,rust-tokio-1)
|
|
("rust-totp-lite" ,rust-totp-lite-1)
|
|
("rust-url" ,rust-url-2)
|
|
("rust-uuid" ,rust-uuid-0.8)
|
|
("rust-zeroize" ,rust-zeroize-1))))
|
|
(native-inputs
|
|
(list perl))
|
|
(home-page "https://git.tozt.net/rbw")
|
|
(synopsis "Unofficial Bitwarden CLI")
|
|
(description "This package is an unofficial command line client for
|
|
Bitwarden. Although Bitwarden ships with a command line client, but
|
|
it's limited by being stateless, which makes it very difficult to use. This
|
|
client avoids that problem by maintaining a background process which is able
|
|
to hold the keys in memory, similar to the way that ssh-agent or gpg-agent
|
|
work. This allows the client to be used in a much simpler way, with the
|
|
background agent taking care of maintaining the necessary state.")
|
|
(license license:expat)))
|
|
|
|
;;; Note: keep in sync with our current Rust/Cargo version.
|
|
(define-public rust-cargo-c
|
|
(package
|
|
(name "rust-cargo-c")
|
|
(version "0.9.27+cargo-0.74.0")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (crate-uri "cargo-c" version))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32 "1xsw17zcxzlg7d7pg40anm9w8g95kvnxfp7ln9sbgv3zhsc9wggq"))))
|
|
(build-system cargo-build-system)
|
|
(arguments
|
|
`(#:cargo-inputs
|
|
(("rust-anyhow" ,rust-anyhow-1)
|
|
("rust-cargo" ,rust-cargo-0.74)
|
|
("rust-cargo-util" ,rust-cargo-util-0.2)
|
|
("rust-cbindgen" ,rust-cbindgen-0.26)
|
|
("rust-cc" ,rust-cc-1)
|
|
("rust-clap" ,rust-clap-4)
|
|
("rust-glob" ,rust-glob-0.3)
|
|
("rust-itertools" ,rust-itertools-0.11)
|
|
("rust-log" ,rust-log-0.4)
|
|
("rust-regex" ,rust-regex-1)
|
|
("rust-semver" ,rust-semver-1)
|
|
("rust-serde" ,rust-serde-1)
|
|
("rust-serde-derive" ,rust-serde-derive-1)
|
|
("rust-serde-json" ,rust-serde-json-1)
|
|
("rust-toml" ,rust-toml-0.7)
|
|
("rust-windows-sys" ,rust-windows-sys-0.48))))
|
|
(native-inputs
|
|
(list pkg-config))
|
|
(inputs
|
|
(list curl libgit2-1.6 libssh2 openssl zlib))
|
|
(home-page "https://github.com/lu-zero/cargo-c")
|
|
(synopsis "Build and install C-compatible libraries")
|
|
(description
|
|
"This package produces and installs a correct pkg-config file, a static
|
|
library and a dynamic library, and a C header to be used by any C (and
|
|
C-compatible) software.")
|
|
(license license:expat)))
|
|
|
|
(define-public rtss
|
|
(package
|
|
(name "rtss")
|
|
(version "0.6.2")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (crate-uri "rtss" version))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32 "1r1b6fynkjnpj5p3k209sa13mjvh4k0ghzwnribm48dh9v7lfnnv"))))
|
|
(build-system cargo-build-system)
|
|
(arguments
|
|
`(#:cargo-inputs
|
|
(("rust-libc" ,rust-libc-0.2)
|
|
("rust-memchr" ,rust-memchr-2))))
|
|
(home-page "https://github.com/Freaky/rtss")
|
|
(synopsis "Annotate stdout/stderr with elapsed times")
|
|
(description "@code{rtss} annotates its output with relative durations between
|
|
consecutive lines and since program start.")
|
|
(license license:expat)))
|
|
|
|
(define-public skim
|
|
(package
|
|
(name "skim")
|
|
(version "0.9.4")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (crate-uri "skim" version))
|
|
(file-name
|
|
(string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"1d5v9vq8frkdjm7bnw3455h6xf3c277d51il2qasn7r20kwik7ab"))))
|
|
(build-system cargo-build-system)
|
|
(arguments
|
|
`(#:cargo-inputs
|
|
(("rust-atty-0.2" ,rust-atty-0.2)
|
|
("rust-beef" ,rust-beef-0.5)
|
|
("rust-bitflags" ,rust-bitflags-1)
|
|
("rust-chrono" ,rust-chrono-0.4)
|
|
("rust-clap" ,rust-clap-2)
|
|
("rust-crossbeam" ,rust-crossbeam-0.8)
|
|
("rust-defer-drop" ,rust-defer-drop-1)
|
|
("rust-derive-builder" ,rust-derive-builder-0.9)
|
|
("rust-env-logger" ,rust-env-logger-0.8)
|
|
("rust-fuzzy-matcher" ,rust-fuzzy-matcher-0.3)
|
|
("rust-lazy-static" ,rust-lazy-static-1)
|
|
("rust-log" ,rust-log-0.4)
|
|
("rust-nix" ,rust-nix-0.19)
|
|
("rust-rayon" ,rust-rayon-1)
|
|
("rust-regex" ,rust-regex-1)
|
|
("rust-shlex" ,rust-shlex-0.1)
|
|
("rust-time" ,rust-time-0.2)
|
|
("rust-timer" ,rust-timer-0.2)
|
|
("rust-tuikit" ,rust-tuikit-0.4)
|
|
("rust-unicode-width" ,rust-unicode-width-0.1)
|
|
("rust-vte" ,rust-vte-0.9))
|
|
#:phases
|
|
(modify-phases %standard-phases
|
|
(add-after 'install 'install-extras
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
(bin (string-append out "/bin"))
|
|
(share (string-append out "/share"))
|
|
(man (string-append out "/share/man"))
|
|
(vimfiles (string-append
|
|
share "/vim/vimfiles/pack/guix/start/skim/plugin"))
|
|
(bash-completion
|
|
(string-append share "/bash-completions/completions"))
|
|
(zsh-site (string-append share "/zsh/site-functions"))
|
|
(fish-vendor
|
|
(string-append share "/fish/vendor-completions.d")))
|
|
;; Binaries
|
|
(for-each
|
|
(lambda (binary) (install-file binary bin))
|
|
(find-files "bin"))
|
|
(mkdir-p share)
|
|
;; Manpages
|
|
(copy-recursively "man" man)
|
|
;; Vim plugins
|
|
(mkdir-p vimfiles)
|
|
(copy-recursively "plugin" vimfiles)
|
|
;; Completions
|
|
(mkdir-p bash-completion)
|
|
(copy-file
|
|
"shell/completion.bash"
|
|
(string-append bash-completion "/skim"))
|
|
(copy-file
|
|
"shell/key-bindings.bash"
|
|
(string-append bash-completion "/skim-bindings"))
|
|
(mkdir-p zsh-site)
|
|
(copy-file
|
|
"shell/completion.zsh"
|
|
(string-append zsh-site "/_skim"))
|
|
(copy-file
|
|
"shell/key-bindings.zsh"
|
|
(string-append zsh-site "/_skim-bindings"))
|
|
(mkdir-p fish-vendor)
|
|
(copy-file
|
|
"shell/key-bindings.fish"
|
|
(string-append fish-vendor "/skim-bindings.fish"))))))))
|
|
(home-page "https://github.com/lotabout/skim")
|
|
(synopsis "Fuzzy Finder in Rust")
|
|
(description "This package provides a fuzzy finder in Rust.")
|
|
(license license:expat)))
|
|
|
|
(define-public skim-0.7
|
|
(package
|
|
(inherit skim)
|
|
(name "skim")
|
|
(version "0.7.0")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (crate-uri "skim" version))
|
|
(file-name
|
|
(string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"1yiyd6fml5hd2l811sckkzmiiq9bd7018ajk4qk3ai4wyvqnw8mv"))))
|
|
(arguments
|
|
`(#:cargo-inputs
|
|
(("rust-bitflags" ,rust-bitflags-1)
|
|
("rust-chrono" ,rust-chrono-0.4)
|
|
("rust-clap" ,rust-clap-2)
|
|
("rust-derive-builder" ,rust-derive-builder-0.9)
|
|
("rust-env-logger" ,rust-env-logger-0.6)
|
|
("rust-fuzzy-matcher" ,rust-fuzzy-matcher-0.3)
|
|
("rust-lazy-static" ,rust-lazy-static-1)
|
|
("rust-log" ,rust-log-0.4)
|
|
("rust-nix" ,rust-nix-0.14)
|
|
("rust-rayon" ,rust-rayon-1)
|
|
("rust-regex" ,rust-regex-1)
|
|
("rust-shlex" ,rust-shlex-0.1)
|
|
("rust-time" ,rust-time-0.1)
|
|
("rust-timer" ,rust-timer-0.2)
|
|
("rust-tuikit" ,rust-tuikit-0.2)
|
|
("rust-unicode-width" ,rust-unicode-width-0.1)
|
|
("rust-vte" ,rust-vte-0.3))))))
|
|
|
|
(define-public rust-skim-0.7
|
|
(deprecated-package "rust-skim-0.7" skim-0.7))
|
|
|
|
(define-public spotifyd
|
|
(package
|
|
(name "spotifyd")
|
|
(version "0.3.5")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (crate-uri "spotifyd" version))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32 "1g6k8xmx8xvc2dpak14y8cc2221djhdflzsjczygvqa9gk5jiadd"))))
|
|
(build-system cargo-build-system)
|
|
(arguments
|
|
`(#:install-source? #f
|
|
#:cargo-inputs (("rust-alsa" ,rust-alsa-0.7)
|
|
("rust-chrono" ,rust-chrono-0.4)
|
|
("rust-color-eyre" ,rust-color-eyre-0.6)
|
|
("rust-daemonize" ,rust-daemonize-0.5)
|
|
("rust-dbus" ,rust-dbus-0.9)
|
|
("rust-dbus-crossroads" ,rust-dbus-crossroads-0.5)
|
|
("rust-dbus-tokio" ,rust-dbus-tokio-0.7)
|
|
("rust-fern" ,rust-fern-0.6)
|
|
("rust-futures" ,rust-futures-0.3)
|
|
("rust-gethostname" ,rust-gethostname-0.4)
|
|
("rust-hex" ,rust-hex-0.4)
|
|
("rust-keyring" ,rust-keyring-2)
|
|
("rust-libc" ,rust-libc-0.2)
|
|
("rust-librespot-audio" ,rust-librespot-audio-0.4)
|
|
("rust-librespot-connect" ,rust-librespot-connect-0.4)
|
|
("rust-librespot-core" ,rust-librespot-core-0.4)
|
|
("rust-librespot-discovery" ,rust-librespot-discovery-0.4)
|
|
("rust-librespot-playback" ,rust-librespot-playback-0.4)
|
|
("rust-log" ,rust-log-0.4)
|
|
("rust-rspotify" ,rust-rspotify-0.11)
|
|
("rust-serde" ,rust-serde-1)
|
|
("rust-sha-1" ,rust-sha-1-0.10)
|
|
("rust-structopt" ,rust-structopt-0.3)
|
|
("rust-syslog" ,rust-syslog-6)
|
|
("rust-tokio" ,rust-tokio-1)
|
|
("rust-tokio-stream" ,rust-tokio-stream-0.1)
|
|
("rust-toml" ,rust-toml-0.7)
|
|
("rust-url" ,rust-url-2)
|
|
("rust-whoami" ,rust-whoami-1)
|
|
("rust-xdg" ,rust-xdg-2))
|
|
#:cargo-development-inputs (("rust-env-logger" ,rust-env-logger-0.10))
|
|
#:features (list "alsa_backend"
|
|
"dbus_keyring"
|
|
;"dbus_mpris" ; Conflicts with rust-chrono-0.4 version.
|
|
"pulseaudio_backend"
|
|
"rodio_backend")))
|
|
(native-inputs (list perl pkg-config))
|
|
(inputs (list alsa-lib dbus pulseaudio))
|
|
(home-page "https://github.com/Spotifyd/spotifyd")
|
|
(synopsis "Spotify streaming daemon with Spotify Connect support")
|
|
(description
|
|
"This package provides a light-weight daemon that connects to the Spotify
|
|
music service. A Spotifyd instance can be controlled by clients that use the
|
|
Spotify Connect protocol, which includes the official Spotify mobile apps.")
|
|
(license license:gpl3)))
|
|
|
|
(define-public svd2rust
|
|
(package
|
|
(name "svd2rust")
|
|
(version "0.19.0")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (crate-uri "svd2rust" version))
|
|
(file-name
|
|
(string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"0q8slfgjfhpljzlk2myb0i538mfq99q1ljn398jm17r1q2pjjxhv"))))
|
|
(build-system cargo-build-system)
|
|
(arguments
|
|
`(#:cargo-inputs
|
|
(("rust-anyhow" ,rust-anyhow-1)
|
|
("rust-cast" ,rust-cast-0.2)
|
|
("rust-clap" ,rust-clap-2)
|
|
("rust-clap-conf" ,rust-clap-conf-0.1)
|
|
("rust-env-logger" ,rust-env-logger-0.7)
|
|
("rust-inflections" ,rust-inflections-1)
|
|
("rust-log" ,rust-log-0.4)
|
|
("rust-proc-macro2" ,rust-proc-macro2-0.4)
|
|
("rust-quote" ,rust-quote-1)
|
|
("rust-svd-parser" ,rust-svd-parser-0.10)
|
|
("rust-syn" ,rust-syn-1)
|
|
("rust-thiserror" ,rust-thiserror-1))))
|
|
(home-page "https://github.com/rust-embedded/svd2rust/")
|
|
(synopsis
|
|
"Generate Rust register maps (`struct`s) from SVD files")
|
|
(description
|
|
"This program can be used to generate Rust register maps (`struct`s) from SVD
|
|
files.")
|
|
(license (list license:expat license:asl2.0))))
|
|
|
|
(define-public swayhide
|
|
(package
|
|
(name "swayhide")
|
|
(version "0.2.0")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (crate-uri "swayhide" version))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32 "0x172ffj0lfmbv5nix708l1mfsizxzy74gpxp5amvx0bbaq0p78s"))))
|
|
(build-system cargo-build-system)
|
|
(arguments
|
|
`(#:cargo-inputs
|
|
(("rust-exitcode" ,rust-exitcode-1)
|
|
("rust-swayipc" ,rust-swayipc-2))))
|
|
(home-page "https://github.com/NomisIV/swayhide/")
|
|
(synopsis "Swallow windows on swaywm")
|
|
(description "swayhide hides the currently active terminal (by moving it
|
|
to the scratchpad), then it executes the supplied command. When the child
|
|
process has finished, the terminal is moved back. This is useful if your
|
|
workflow includes opening graphical programs from the terminal, as the locked
|
|
terminal won't have to take up any space.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public swayr
|
|
(package
|
|
(name "swayr")
|
|
(version "0.18.0")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (crate-uri "swayr" version))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32 "1m443lwbs3lm20kkviw60db56w9i59dm393z1sn6llpfi2xihh3h"))))
|
|
(build-system cargo-build-system)
|
|
(arguments
|
|
`(#:tests? #f
|
|
#:cargo-inputs
|
|
(("rust-clap" ,rust-clap-3)
|
|
("rust-directories" ,rust-directories-4)
|
|
("rust-env-logger" ,rust-env-logger-0.9)
|
|
("rust-log" ,rust-log-0.4)
|
|
("rust-once-cell" ,rust-once-cell-1)
|
|
("rust-rand" ,rust-rand-0.8)
|
|
("rust-regex" ,rust-regex-1)
|
|
("rust-rt-format" ,rust-rt-format-0.3)
|
|
("rust-serde" ,rust-serde-1)
|
|
("rust-serde-json" ,rust-serde-json-1)
|
|
("rust-swayipc" ,rust-swayipc-3)
|
|
("rust-toml" ,rust-toml-0.5))))
|
|
(home-page "https://sr.ht/~tsdh/swayr/")
|
|
(synopsis "Window-switcher for the sway window manager")
|
|
(description
|
|
"This package provides a last-recently-used window-switcher for the sway
|
|
window manager. Swayr consists of a daemon, and a client. The swayrd daemon
|
|
records window/workspace creations, deletions, and focus changes using sway's
|
|
JSON IPC interface. The swayr client offers subcommands, and sends them to the
|
|
daemon which executes them.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public tealdeer
|
|
(package
|
|
(name "tealdeer")
|
|
(version "1.6.1")
|
|
(source
|
|
(origin
|
|
;; Completions aren't in the release tarball.
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://github.com/dbrgn/tealdeer")
|
|
(commit (string-append "v" version))))
|
|
(file-name (git-file-name name version))
|
|
(sha256
|
|
(base32
|
|
"0ipd23b30pqvyh20mxfd13ps0rnvg7zfpysv7wambfbb92xdh36d"))))
|
|
(build-system cargo-build-system)
|
|
(arguments
|
|
`(#:phases
|
|
(modify-phases %standard-phases
|
|
(add-after 'install 'install-completions
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
(bash (string-append out "/etc/bash_completion.d/"))
|
|
(fish (string-append out "/share/fish/vendor_completions.d/"))
|
|
(zsh (string-append out "/share/zsh/site-functions/")))
|
|
(mkdir-p bash)
|
|
(mkdir-p fish)
|
|
(mkdir-p zsh)
|
|
(copy-file "completion/bash_tealdeer"
|
|
(string-append bash "tealdeer"))
|
|
(copy-file "completion/fish_tealdeer"
|
|
(string-append fish "tealdeer.fish"))
|
|
(copy-file "completion/zsh_tealdeer"
|
|
(string-append zsh "_tealdeer"))))))
|
|
#:install-source? #f
|
|
#:cargo-test-flags
|
|
'("--release" "--"
|
|
;; These tests go to the network
|
|
"--skip=test_quiet_old_cache"
|
|
"--skip=test_quiet_cache"
|
|
"--skip=test_quiet_failures"
|
|
"--skip=test_pager_flag_enable"
|
|
"--skip=test_markdown_rendering"
|
|
"--skip=test_spaces_find_command"
|
|
"--skip=test_autoupdate_cache"
|
|
"--skip=test_update_cache"
|
|
"--skip=test_create_cache_directory_path")
|
|
#:cargo-inputs
|
|
(("rust-anyhow" ,rust-anyhow-1)
|
|
("rust-app-dirs2" ,rust-app-dirs2-2)
|
|
("rust-atty" ,rust-atty-0.2)
|
|
("rust-clap" ,rust-clap-3)
|
|
("rust-env-logger" ,rust-env-logger-0.9)
|
|
("rust-log" ,rust-log-0.4)
|
|
("rust-pager" ,rust-pager-0.16)
|
|
("rust-reqwest" ,rust-reqwest-0.11)
|
|
("rust-serde" ,rust-serde-1)
|
|
("rust-serde-derive" ,rust-serde-derive-1)
|
|
("rust-toml" ,rust-toml-0.5)
|
|
("rust-walkdir" ,rust-walkdir-2)
|
|
("rust-yansi" ,rust-yansi-0.5)
|
|
("rust-zip" ,rust-zip-0.6))
|
|
#:cargo-development-inputs
|
|
(("rust-assert-cmd" ,rust-assert-cmd-2)
|
|
("rust-escargot" ,rust-escargot-0.5)
|
|
("rust-filetime" ,rust-filetime-0.2)
|
|
("rust-predicates" ,rust-predicates-2)
|
|
("rust-tempfile" ,rust-tempfile-3))))
|
|
(native-inputs
|
|
(list perl pkg-config))
|
|
(inputs
|
|
(list openssl))
|
|
(home-page "https://github.com/dbrgn/tealdeer/")
|
|
(synopsis "Fetch and show tldr help pages for many CLI commands")
|
|
(description
|
|
"This package fetches and shows tldr help pages for many CLI commands.
|
|
Full featured offline client with caching support.")
|
|
(license (list license:expat license:asl2.0))))
|
|
|
|
(define-public git-absorb
|
|
(package
|
|
(name "git-absorb")
|
|
(version "0.6.6")
|
|
(source
|
|
(origin
|
|
;; crates.io does not include the manual page.
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://github.com/tummychow/git-absorb")
|
|
(commit version)))
|
|
(file-name (git-file-name name version))
|
|
(sha256
|
|
(base32 "04v10bn24acify34vh5ayymsr1flcyb05f3az9k1s2m6nlxy5gb9"))))
|
|
(build-system cargo-build-system)
|
|
(arguments
|
|
`(#:cargo-inputs
|
|
(("rust-anyhow" ,rust-anyhow-1)
|
|
("rust-clap" ,rust-clap-2)
|
|
("rust-git2" ,rust-git2-0.13)
|
|
("rust-memchr" ,rust-memchr-2)
|
|
("rust-slog" ,rust-slog-2)
|
|
("rust-slog-async" ,rust-slog-async-2)
|
|
("rust-slog-term" ,rust-slog-term-2))
|
|
#:cargo-development-inputs
|
|
(("rust-tempfile" ,rust-tempfile-3))
|
|
#:phases
|
|
(modify-phases %standard-phases
|
|
(add-after 'unpack 'relax-version-requirements
|
|
(lambda _
|
|
(substitute* "Cargo.toml"
|
|
(("\"~") "\""))))
|
|
(add-after 'install 'install-manual-page
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
(man (string-append out "/share/man/man1")))
|
|
(install-file "Documentation/git-absorb.1" man)))))))
|
|
(native-inputs
|
|
(list pkg-config))
|
|
(inputs
|
|
(list libgit2-1.3 zlib))
|
|
(home-page "https://github.com/tummychow/git-absorb")
|
|
(synopsis "Git tool for making automatic fixup commits")
|
|
(description
|
|
"@code{git absorb} automatically absorbs staged changes into their
|
|
current branch. @code{git absorb} will automatically identify which commits
|
|
are safe to modify, and which staged changes belong to each of those commits.
|
|
It will then write @code{fixup!} commits for each of those changes.")
|
|
(license license:bsd-3)))
|
|
|
|
(define-public rust-xremap
|
|
(package
|
|
(name "rust-xremap")
|
|
(version "0.8.9")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (crate-uri "xremap" version))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"1815hz1a93brj6v9102xypds1qslf6gxgk9vcvxhxlhy1c2pfxvj"))))
|
|
(build-system cargo-build-system)
|
|
(arguments
|
|
`(#:features '()
|
|
#:install-source? #f
|
|
#:cargo-inputs
|
|
(("rust-anyhow" ,rust-anyhow-1)
|
|
("rust-clap" ,rust-clap-4)
|
|
("rust-clap-complete" ,rust-clap-complete-4)
|
|
("rust-derive-where" ,rust-derive-where-1)
|
|
("rust-env-logger" ,rust-env-logger-0.10)
|
|
("rust-evdev" ,rust-evdev-0.12)
|
|
("rust-fork" ,rust-fork-0.1)
|
|
("rust-hyprland" ,rust-hyprland-0.3)
|
|
("rust-indoc" ,rust-indoc-2)
|
|
("rust-lazy-static" ,rust-lazy-static-1)
|
|
("rust-log" ,rust-log-0.4)
|
|
("rust-nix" ,rust-nix-0.26)
|
|
("rust-regex" ,rust-regex-1)
|
|
("rust-serde" ,rust-serde-1)
|
|
("rust-serde-json" ,rust-serde-json-1)
|
|
("rust-serde-with" ,rust-serde-with-3)
|
|
("rust-serde-yaml" ,rust-serde-yaml-0.9)
|
|
("rust-swayipc" ,rust-swayipc-3)
|
|
("rust-wayland-client" ,rust-wayland-client-0.30)
|
|
("rust-wayland-protocols-wlr" ,rust-wayland-protocols-wlr-0.1)
|
|
("rust-x11rb" ,rust-x11rb-0.12)
|
|
("rust-zbus" ,rust-zbus-1))
|
|
#:phases
|
|
(modify-phases %standard-phases
|
|
(add-after 'install 'install-completions
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
(share (string-append out "/share"))
|
|
(xremap (string-append out "/bin/xremap")))
|
|
(mkdir-p (string-append share "/bash-completion/completions"))
|
|
(with-output-to-file
|
|
(string-append share "/bash-completion/completions/xremap")
|
|
(lambda _ (invoke xremap "--completions" "bash")))
|
|
(mkdir-p (string-append share "/fish/vendor_completions.d"))
|
|
(with-output-to-file
|
|
(string-append share "/fish/vendor_completions.d/xremap.fish")
|
|
(lambda _ (invoke xremap "--completions" "fish")))
|
|
(mkdir-p (string-append share "/zsh/site-functions"))
|
|
(with-output-to-file
|
|
(string-append share "/zsh/site-functions/_xremap")
|
|
(lambda _ (invoke xremap "--completions" "zsh")))
|
|
(mkdir-p (string-append share "/elvish/lib"))
|
|
(with-output-to-file
|
|
(string-append share "/elvish/lib/xremap")
|
|
(lambda _ (invoke xremap "--completions" "elvish")))))))))
|
|
(home-page "https://github.com/k0kubun/xremap")
|
|
(synopsis "Dynamic key remapp for X and Wayland")
|
|
(description "This package provides dynamic key remapp for X and Wayland.")
|
|
(license license:expat)))
|
|
|
|
(define-public xremap-gnome
|
|
(package
|
|
(inherit rust-xremap)
|
|
(name "xremap-gnome")
|
|
(arguments
|
|
(substitute-keyword-arguments (package-arguments rust-xremap)
|
|
((#:features _) '(list "gnome"))))))
|
|
|
|
(define-public xremap-sway
|
|
(package
|
|
(inherit rust-xremap)
|
|
(name "xremap-sway")
|
|
(arguments
|
|
(substitute-keyword-arguments (package-arguments rust-xremap)
|
|
((#:features _) '(list "sway"))))))
|
|
|
|
(define-public xremap-wlroots
|
|
(package
|
|
(inherit rust-xremap)
|
|
(name "xremap-wlroots")
|
|
(arguments
|
|
(substitute-keyword-arguments (package-arguments rust-xremap)
|
|
((#:features _) '(list "wlroots"))))))
|
|
|
|
(define-public xremap-x11
|
|
(package
|
|
(inherit rust-xremap)
|
|
(name "xremap-x11")
|
|
(arguments
|
|
(substitute-keyword-arguments (package-arguments rust-xremap)
|
|
((#:features _) '(list "x11"))))))
|
|
|
|
(define-public xsv
|
|
(package
|
|
(name "xsv")
|
|
(version "0.13.0")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (crate-uri "xsv" version))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"0pvzr7x5phlya6m5yikvy13vgbazshw0plysckz9zmf2ly5x4jl8"))))
|
|
(build-system cargo-build-system)
|
|
(arguments
|
|
`(#:cargo-inputs
|
|
(("rust-byteorder" ,rust-byteorder-1)
|
|
("rust-chan" ,rust-chan-0.1)
|
|
("rust-csv" ,rust-csv-1)
|
|
("rust-csv-index" ,rust-csv-index-0.1)
|
|
("rust-docopt" ,rust-docopt-1)
|
|
("rust-filetime" ,rust-filetime-0.1)
|
|
("rust-num-cpus" ,rust-num-cpus-1)
|
|
("rust-rand" ,rust-rand-0.4)
|
|
("rust-regex" ,rust-regex-1)
|
|
("rust-serde" ,rust-serde-1)
|
|
("rust-serde-derive" ,rust-serde-derive-1)
|
|
("rust-streaming-stats" ,rust-streaming-stats-0.2)
|
|
("rust-tabwriter" ,rust-tabwriter-1)
|
|
("rust-threadpool" ,rust-threadpool-1))
|
|
#:cargo-development-inputs
|
|
(("rust-log" ,rust-log-0.4)
|
|
("rust-quickcheck" ,rust-quickcheck-0.6))))
|
|
(home-page "https://github.com/BurntSushi/xsv")
|
|
(synopsis "High performance CSV command line toolkit")
|
|
(description
|
|
"This package provides a high performance CSV command line toolkit.")
|
|
(license (list license:unlicense license:expat))))
|
|
|
|
(define-public zoxide
|
|
(package
|
|
(name "zoxide")
|
|
(version "0.8.3")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (crate-uri "zoxide" version))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32 "0y5v2vgl9f3n0n0w4b3iddbfyxv0hls0vw5406ry0hcvnnjyy2l3"))))
|
|
(build-system cargo-build-system)
|
|
(arguments
|
|
(list #:install-source? #f
|
|
#:cargo-inputs
|
|
`(("rust-anyhow" ,rust-anyhow-1)
|
|
("rust-askama" ,rust-askama-0.11)
|
|
("rust-bincode" ,rust-bincode-1)
|
|
("rust-clap" ,rust-clap-3)
|
|
("rust-clap-complete" ,rust-clap-complete-3)
|
|
("rust-clap-complete-fig" ,rust-clap-complete-fig-3)
|
|
("rust-dirs" ,rust-dirs-4)
|
|
("rust-dunce" ,rust-dunce-1)
|
|
("rust-fastrand" ,rust-fastrand-1)
|
|
("rust-glob" ,rust-glob-0.3)
|
|
("rust-nix" ,rust-nix-0.24)
|
|
("rust-serde" ,rust-serde-1)
|
|
("rust-which" ,rust-which-4))
|
|
#:cargo-development-inputs
|
|
`(("rust-assert-cmd" ,rust-assert-cmd-2)
|
|
("rust-rstest" ,rust-rstest-0.15)
|
|
("rust-rstest-reuse" ,rust-rstest-reuse-0.4)
|
|
("rust-tempfile" ,rust-tempfile-3))))
|
|
(home-page "https://github.com/ajeetdsouza/zoxide/")
|
|
(synopsis "Fast way to navigate your file system")
|
|
(description
|
|
"Zoxide is a fast replacement for your @command{cd} command. It keeps
|
|
track of the directories you use most frequently, and uses a ranking algorithm
|
|
to navigate to the best match.")
|
|
(license license:expat)))
|
|
|
|
(define-public htmlq
|
|
(package
|
|
(name "htmlq")
|
|
(version "0.4.0")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (crate-uri "htmlq" version))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32 "0912cdkz5xji1hzfj1cf42zh1kd860b52xmwwhb7q2jhp6qk25jh"))))
|
|
(build-system cargo-build-system)
|
|
(arguments
|
|
`(#:cargo-inputs
|
|
(("rust-clap" ,rust-clap-2)
|
|
("rust-html5ever" ,rust-html5ever-0.25)
|
|
("rust-kuchiki" ,rust-kuchiki-0.8)
|
|
("rust-lazy-static" ,rust-lazy-static-1)
|
|
("rust-url" ,rust-url-2))))
|
|
(home-page "https://github.com/mgdm/htmlq")
|
|
(synopsis "Like jq, but for HTML")
|
|
(description "Extract content from HTML files using CSS selectors.")
|
|
(license license:expat)))
|