gnu: minetest-mesecons: Fix indentation.
* gnu/packages/minetest.scm (minetest-mesecons): Fix indentation. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
182c672149
commit
6773f215d5
1 changed files with 25 additions and 25 deletions
|
|
@ -304,37 +304,37 @@ and a variety of other stuff.")
|
||||||
;; The release on ContentDB does not have its own version number.
|
;; The release on ContentDB does not have its own version number.
|
||||||
(let ((commit "db5879706d04d3480bc4863ce0c03fa73e5f10c7")
|
(let ((commit "db5879706d04d3480bc4863ce0c03fa73e5f10c7")
|
||||||
(revision "0"))
|
(revision "0"))
|
||||||
(package
|
(package
|
||||||
(name "minetest-mesecons")
|
(name "minetest-mesecons")
|
||||||
(version (git-version "1.2.1" revision commit))
|
(version (git-version "1.2.1" revision commit))
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/minetest-mods/mesecons")
|
(url "https://github.com/minetest-mods/mesecons")
|
||||||
(commit commit)))
|
(commit commit)))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "04m9s9l3frw1lgki41hgvjsw2zkrvfv0sy750b6j12arzb3lv645"))
|
(base32 "04m9s9l3frw1lgki41hgvjsw2zkrvfv0sy750b6j12arzb3lv645"))
|
||||||
(file-name (git-file-name name version))))
|
(file-name (git-file-name name version))))
|
||||||
(build-system minetest-mod-build-system)
|
(build-system minetest-mod-build-system)
|
||||||
(home-page "https://mesecons.net")
|
(home-page "https://mesecons.net")
|
||||||
(synopsis
|
(synopsis
|
||||||
"Digital circuitry for Minetest, including wires, buttons and lights")
|
"Digital circuitry for Minetest, including wires, buttons and lights")
|
||||||
(description
|
(description
|
||||||
"Mesecons is a mod for Minetest implementing various items related
|
"Mesecons is a mod for Minetest implementing various items related
|
||||||
to digital circuitry, such as wires, buttons, lights and programmable
|
to digital circuitry, such as wires, buttons, lights and programmable
|
||||||
controllers. Among other things, there are also pistons, solar panels,
|
controllers. Among other things, there are also pistons, solar panels,
|
||||||
pressure plates and note blocks.
|
pressure plates and note blocks.
|
||||||
|
|
||||||
Mesecons has a similar goal to Redstone in Minecraft, but works in its own way,
|
Mesecons has a similar goal to Redstone in Minecraft, but works in its own way,
|
||||||
with different rules and mechanics.")
|
with different rules and mechanics.")
|
||||||
;; LGPL for code, CC-BY-SA for textures.
|
;; LGPL for code, CC-BY-SA for textures.
|
||||||
;; The README.md and COPYING.txt disagree about the "+" in license:lgpl3+.
|
;; The README.md and COPYING.txt disagree about the "+" in license:lgpl3+.
|
||||||
;; For now, assume README.md is correct. Upstream has been asked to
|
;; For now, assume README.md is correct. Upstream has been asked to
|
||||||
;; correct the inconsistency:
|
;; correct the inconsistency:
|
||||||
;; <https://github.com/minetest-mods/mesecons/issues/575>.
|
;; <https://github.com/minetest-mods/mesecons/issues/575>.
|
||||||
(license (list license:lgpl3+ license:cc-by-sa3.0))
|
(license (list license:lgpl3+ license:cc-by-sa3.0))
|
||||||
(properties `((upstream-name . "Jeija/mesecons"))))))
|
(properties `((upstream-name . "Jeija/mesecons"))))))
|
||||||
|
|
||||||
(define-public minetest-mineclone
|
(define-public minetest-mineclone
|
||||||
(package
|
(package
|
||||||
|
|
|
||||||
Reference in a new issue