mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 14:28:15 -05:00
gnu: Add rebar3-git-vsn.
* gnu/packages/erlang.scm (rebar3-git-vsn): New variable.
This commit is contained in:
parent
1e6d64c2dc
commit
ffc18b87f9
1 changed files with 32 additions and 0 deletions
|
@ -37,6 +37,7 @@ (define-module (gnu packages erlang)
|
|||
#:use-module (gnu packages gl)
|
||||
#:use-module (gnu packages ncurses)
|
||||
#:use-module (gnu packages perl)
|
||||
#:use-module (gnu packages version-control)
|
||||
#:use-module (gnu packages tls)
|
||||
#:use-module (gnu packages wxwidgets))
|
||||
|
||||
|
@ -647,3 +648,34 @@ (define-public rebar3-raw-deps
|
|||
(description "This plugin provides support for handling non-OTP
|
||||
applications as a dependent libraries.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rebar3-git-vsn
|
||||
(package
|
||||
(name "rebar3-git-vsn")
|
||||
(version "1.1.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (hexpm-uri "rebar3_git_vsn" version))
|
||||
(sha256
|
||||
(base32 "1dfz56034pa25axly9vqdzv3phkn8ll0qwrkws96pbgcprhky1hx"))))
|
||||
(build-system rebar-build-system)
|
||||
(inputs
|
||||
(list git-minimal/fixed))
|
||||
(arguments
|
||||
`(;; Running the tests require binary artifact (tar-file containing
|
||||
;; samples git repos) TODO: remove these from the source
|
||||
#:tests? #f
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'patch-path
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(let ((git (assoc-ref inputs "git-minimal")))
|
||||
(substitute* "src/rebar3_git_vsn.erl"
|
||||
(("rebar_utils:sh\\(\"git " _)
|
||||
(string-append "rebar_utils:sh(\"" git "/bin/git ")))))))))
|
||||
(home-page "https://github.com/soranoba/rebar3_git_vsn")
|
||||
(synopsis "Rebar3 plugin for generating the version from git")
|
||||
(description "This plugin adds support for generating the version from
|
||||
a git checkout.")
|
||||
(license license:expat)))
|
||||
|
|
Loading…
Reference in a new issue