diff options
| author | 2025-09-02 15:10:31 -0700 | |
|---|---|---|
| committer | 2025-09-02 15:10:31 -0700 | |
| commit | a849117439f3097fca61d4895198f298f36fce97 (patch) | |
| tree | 0d9055dba48624d9cf21c7f3029329acbd61a4f2 /oni/packages/atuin.scm | |
| parent | b409ca94ac9141db42a568ff4d3bac961c5bb3e2 (diff) | |
| download | new-dotfiles-a849117439f3097fca61d4895198f298f36fce97.tar.gz new-dotfiles-a849117439f3097fca61d4895198f298f36fce97.zip | |
atuin: Fix compatibility with old Rust packaging methods
The way Rust packages are packaged has changed, this commit fixes compatibility
with the in-between compatibility layer until I can properly make atuin work for
the new packaging system.
Diffstat (limited to 'oni/packages/atuin.scm')
| -rw-r--r-- | oni/packages/atuin.scm | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/oni/packages/atuin.scm b/oni/packages/atuin.scm index 5cedfcc..5131ce9 100644 --- a/oni/packages/atuin.scm +++ b/oni/packages/atuin.scm @@ -3,15 +3,8 @@ #:use-module (guix download) #:use-module (guix build-system cargo) #:use-module ((guix licenses) #:prefix license:) - #:use-module (gnu packages crates-io) - #:use-module (gnu packages crates-windows) - #:use-module (gnu packages crates-graphics) - #:use-module (gnu packages crates-apple) - #:use-module (gnu packages crates-crypto) - #:use-module (gnu packages crates-web) - #:use-module (gnu packages crates-tls) - #:use-module (gnu packages crates-shell) - #:use-module (gnu packages crates-database)) + #:use-module (gnu packages sqlite) + #:use-module (past-crates packages crates-io)) (define-public rust-tracing-tree-0.4 (package @@ -1503,6 +1496,7 @@ SQLite.") #:cargo-development-inputs (("rust-tracing-tree" ,rust-tracing-tree-0.4)) ;; These tests all try to connect to a locally running server instance. #:cargo-test-flags '("--" "--skip" "sync" "--skip" "change_password" "--skip" "multi_user_test" "--skip" "registration"))) + (native-inputs (list sqlite)) (home-page "https://atuin.sh") (synopsis "atuin - magical shell history") (description "This package provides atuin - magical shell history.") |
