gnu: emacs-string-inflection: Use new style.

* gnu/packages/emacs-xyz.scm (emacs-string-inflection)[native-inputs]: Remove label.
This commit is contained in:
Nicolas Goaziou 2021-12-14 19:48:09 +01:00
parent 17f844c5dd
commit 64ed2d8414
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -4912,18 +4912,18 @@ configuration, cache, and other data.")
(package (package
(name "emacs-string-inflection") (name "emacs-string-inflection")
(version "1.0.16") (version "1.0.16")
(source (origin (source
(method git-fetch) (origin
(uri (git-reference (method git-fetch)
(url "https://github.com/akicho8/string-inflection") (uri (git-reference
(commit (string-append "v" version)))) (url "https://github.com/akicho8/string-inflection")
(file-name (git-file-name name version)) (commit (string-append "v" version))))
(sha256 (file-name (git-file-name name version))
(base32 (sha256
"0wskrp3v5gi3b3s9471ijkdncnfd888qd50c72rv2p8846174paj")))) (base32 "0wskrp3v5gi3b3s9471ijkdncnfd888qd50c72rv2p8846174paj"))))
(build-system emacs-build-system) (build-system emacs-build-system)
(native-inputs (native-inputs
`(("ert-runner" ,emacs-ert-runner))) (list emacs-ert-runner))
(arguments (arguments
`(#:tests? #t `(#:tests? #t
#:test-command '("ert-runner"))) #:test-command '("ert-runner")))