Skip to content

Commit

Permalink
🚧 lncdtools guix package
Browse files Browse the repository at this point in the history
  • Loading branch information
WillForan committed Aug 30, 2023
1 parent bddd142 commit fcbc79b
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions dist/guix/lncdtools.scm
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
(define-module (gnu packages lncdtools)
#:use-module (guix licenses)
#:use-module (guix packages)
#:use-module (guix download)
;#:use-module (guix git-download)
#:use-module (guix build-system copy)
#:use-module (gnu packages perl)
#:use-module (gnu packages bash))


(define-public lncdtools
(package
(name "lncdtools")
(version "0.0.202307242")
(source (origin
(method url-fetch)
(uri (string-append "https://github.com/lncd/lncdtools/archive/refs/tags/v" version
".tar.gz"))
(sha256
(base32
"0whdz2vqkz4djmk21l79m10w7zln13kqkf3isgbccryl6i00ar4d"))))
(inputs (list perl bash))
(build-system copy-build-system)
(arguments
'(#:install-plan
'(("./" "bin/" #:exclude ("dist" "docs" "src" "t" "Makefile" "Dockerfile" "mkdocs.yaml" "README.md")))))
(synopsis "Suit of neuroimaging companion tools for shell and make")
(description "A suit of shell scripting, GNU Make, and general neuroimaging companion tools developed in the Laboratory of NeuroCognitive Development.")
(home-page "https://github.com/lncd/lncdtools")
(license gpl3+)))

lncdtools

0 comments on commit fcbc79b

Please sign in to comment.