(define-module (rekahsoft packages rust-xyz) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system cargo) #:use-module (guix licenses)) (define-public rust-rustc-std-workspace-core (package (name "rust-rustc-std-workspace-core") (version "1.0.0") (source (origin (method url-fetch) (uri (crate-uri "rustc-std-workspace-core" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "1309xhwyai9xpz128xrfjqkmnkvgjwddznmj7brbd8i8f58zamhr")))) (build-system cargo-build-system) (arguments `(#:phases (modify-phases %standard-phases (delete 'build)))) (home-page "") (synopsis "Explicitly empty crate for rust-lang/rust integration ") (description "Explicitly empty crate for rust-lang/rust integration ") (license #f)))