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
(origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
(url "https://github.com/akicho8/string-inflection") (url "https://github.com/akicho8/string-inflection")
(commit (string-append "v" version)))) (commit (string-append "v" version))))
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32 "0wskrp3v5gi3b3s9471ijkdncnfd888qd50c72rv2p8846174paj"))))
"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")))