gnu: emacs-ag: Use new style.
* gnu/packages/emacs-xyz.scm (emacs-ag)[arguments]<#:phases>: Remove trailing [propagated-inputs]: Remove labels.
This commit is contained in:
parent
b1d7112f8e
commit
4558a98389
1 changed files with 13 additions and 15 deletions
|
@ -2534,15 +2534,15 @@ links.")
|
||||||
(package
|
(package
|
||||||
(name "emacs-ag")
|
(name "emacs-ag")
|
||||||
(version "0.48")
|
(version "0.48")
|
||||||
(source (origin
|
(source
|
||||||
(method git-fetch)
|
(origin
|
||||||
(uri (git-reference
|
(method git-fetch)
|
||||||
(url "https://github.com/Wilfred/ag.el")
|
(uri (git-reference
|
||||||
(commit version)))
|
(url "https://github.com/Wilfred/ag.el")
|
||||||
(file-name (git-file-name name version))
|
(commit version)))
|
||||||
(sha256
|
(file-name (git-file-name name version))
|
||||||
(base32
|
(sha256
|
||||||
"1p918y24vcn2pdliaymd210xp9fvhd4a1srqbv2lfiqrh59yjidx"))))
|
(base32 "1p918y24vcn2pdliaymd210xp9fvhd4a1srqbv2lfiqrh59yjidx"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
|
@ -2555,15 +2555,13 @@ links.")
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let* ((out (assoc-ref outputs "out"))
|
(let* ((out (assoc-ref outputs "out"))
|
||||||
(info (string-append out "/share/info")))
|
(info (string-append out "/share/info")))
|
||||||
(install-file "docs/_build/texinfo/agel.info" info)
|
(install-file "docs/_build/texinfo/agel.info" info)))))))
|
||||||
#t))))))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-sphinx texinfo))
|
(list python-sphinx texinfo))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("dash" ,emacs-dash)
|
(list emacs-dash
|
||||||
("s" ,emacs-s)
|
emacs-s
|
||||||
;; We need to use 'ag' as the executable on remote systems.
|
the-silver-searcher)) ;'ag' executable
|
||||||
("the-silver-searcher" ,the-silver-searcher)))
|
|
||||||
(home-page "https://github.com/Wilfred/ag.el")
|
(home-page "https://github.com/Wilfred/ag.el")
|
||||||
(synopsis "Front-end for ag (the-silver-searcher) for Emacs")
|
(synopsis "Front-end for ag (the-silver-searcher) for Emacs")
|
||||||
(description "This package provides the ability to use the silver
|
(description "This package provides the ability to use the silver
|
||||||
|
|
Reference in a new issue