mirror of
https://github.com/SqrtMinusOne/channel-q.git
synced 2025-12-10 19:53:03 +03:00
66 lines
2.6 KiB
Scheme
66 lines
2.6 KiB
Scheme
(define-module (nushell-bin)
|
|
#:use-module (ice-9 string-fun)
|
|
#:use-module (gnu packages base)
|
|
#:use-module (gnu packages curl)
|
|
#:use-module (gnu packages version-control)
|
|
#:use-module (gnu packages xorg)
|
|
#:use-module (gnu packages tls)
|
|
#:use-module (gnu packages compression)
|
|
#:use-module (gnu packages gcc)
|
|
#:use-module (guix download)
|
|
#:use-module (guix packages)
|
|
#:use-module ((guix licenses) #:prefix license:)
|
|
#:use-module (nonguix build-system binary))
|
|
|
|
(define-public nushell-bin
|
|
(package
|
|
(name "nushell-bin")
|
|
(version "0.84.0")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append
|
|
"https://github.com/nushell/nushell/releases/download/" version "/"
|
|
"nu-" version "-x86_64-unknown-linux-gnu.tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"095np8i76qhb5dac111z2h5dxwlldqmaqlyx868qyvs4z8m2j9a2"))))
|
|
(build-system binary-build-system)
|
|
(arguments
|
|
`(#:phases
|
|
(modify-phases %standard-phases
|
|
(delete 'binary-unpack)
|
|
(replace 'unpack
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
(mkdir-p "nushell")
|
|
(invoke "tar" "xvzf" (assoc-ref inputs "source") "-C" "nushell" "--strip-components" "1"))))
|
|
#:install-plan
|
|
`(("nushell" "/bin/" #:exclude ("README.txt" "LICENSE")))
|
|
#:patchelf-plan
|
|
`(("nushell/nu" ("glibc" "zlib" "libgccjit"))
|
|
("nushell/nu_plugin_custom_values" ("glibc" "libgccjit"))
|
|
("nushell/nu_plugin_example" ("glibc" "libgccjit"))
|
|
("nushell/nu_plugin_gstat" ("glibc" "libgccjit" "zlib"))
|
|
("nushell/nu_plugin_inc" ("glibc" "libgccjit"))
|
|
("nushell/nu_plugin_query" ("glibc" "libgccjit"))
|
|
("nushell/nu_plugin_formats" ("glibc" "libgccjit")))))
|
|
(inputs
|
|
`(("curl" ,curl)
|
|
("libgccjit" ,libgccjit)
|
|
("libgit2" ,libgit2)
|
|
("libx11" ,libx11)
|
|
("libxcb" ,libxcb)
|
|
("openssl" ,openssl)
|
|
("glibc" ,glibc)
|
|
("zlib" ,zlib)))
|
|
(synopsis "Shell that understands the structure of the data")
|
|
(description "Nu draws inspiration from projects like PowerShell, functional
|
|
programming languages, and modern CLI tools. Rather than thinking of
|
|
files and services as raw streams of text, Nu looks at each input as
|
|
something with structure. For example, when you list the contents of
|
|
a directory, what you get back is a table of rows, where each row
|
|
represents an item in that directory. These values can be piped
|
|
through a series of steps, in a series of commands called a
|
|
``pipeline''.")
|
|
(home-page "https://www.nushell.sh")
|
|
(license license:expat)))
|