gnu: light: Update to 1.1.

* gnu/packages/linux.scm (light): Update to 1.1.
[source]: Switch to GIT-FETCH.
This commit is contained in:
Tobias Geerinckx-Rice 2018-06-15 02:50:58 +02:00
parent 14b0c49670
commit a756fa5ac0
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 8 additions and 8 deletions

View File

@ -4036,15 +4036,15 @@ monitoring tools for Linux. These include @code{mpstat}, @code{iostat},
(define-public light
(package
(name "light")
(version "1.0")
(version "1.1")
(source (origin
(method url-fetch)
(uri (string-append "https://github.com/haikarainen/" name
"/archive/v" version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/haikarainen/light")
(commit version)))
(sha256
(base32
"0r5gn6c0jcxknzybl6059dplxv46dpahchqq4gymrs7z8bp0hilp"))
(file-name (string-append name "-" version ".tar.gz"))))
"1qra8yzsga29bxlvq63v1db071a1xdji7i60p4kzrciidm1206js"))))
(build-system gnu-build-system)
(arguments
'(#:tests? #f ; no tests
@ -4052,7 +4052,7 @@ monitoring tools for Linux. These include @code{mpstat}, @code{iostat},
(string-append "PREFIX=" %output))
#:phases
(modify-phases %standard-phases
(delete 'configure)
(delete 'configure) ; no configure script
(add-after 'unpack 'patch-makefile
(lambda _
(substitute* "Makefile" (("chown") "#")))))))