diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-23 00:40:53 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-31 22:52:11 +0100 |
commit | ed97671fe69a50a7ea3708bb9fc17002fc689783 (patch) | |
tree | c7c29de34d463adfe63b2d6cbe3da4f10632b623 | |
parent | 676966bd4d56da46bd77ffe6dbf9c5b77ccfbb93 (diff) |
gnu: Add go-github-com-phayes-permbits.
* gnu/packages/golang-xyz.scm (go-github-com-phayes-permbits): New variable.
Change-Id: Ib7c9794f3f3871cf50adbc39fb6ea41d38954306
-rw-r--r-- | gnu/packages/golang-xyz.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 5660010398..6a3676be04 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -15495,6 +15495,30 @@ editor with history, inspired by @url{https://github.com/antirez/linenoise/, linenoise}. Xterm as well as WIN32 terminal codes are supported.") (license license:expat))) +(define-public go-github-com-phayes-permbits + (package + (name "go-github-com-phayes-permbits") + (version "0.0.0-20190612203442-39d7c581d2ee") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/phayes/permbits") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1jixy4m65agyyly5mg4icszwzs5hjgj1x7cwvc9a3df6j5lwd41x")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/phayes/permbits")) + (home-page "https://github.com/phayes/permbits") + (synopsis "Easy file permissions for Golang") + (description + "This package makes it a breeze to check and modify file permission +bits.") + (license license:expat))) + (define-public go-github-com-philhofer-fwd (package (name "go-github-com-philhofer-fwd") |