diff options
author | Sharlatan Hellseher <[email protected]> | 2025-01-09 23:48:06 +0000 |
---|---|---|
committer | Sharlatan Hellseher <[email protected]> | 2025-01-21 23:47:52 +0000 |
commit | de3e0b49253dbe77c8e5cc2471fb04685e697000 (patch) | |
tree | 83ef54d9781dcee1e025ec74d9a8246fbfba112b /gnu/packages/golang-web.scm | |
parent | 18205e27e902262fc728e4761173f21667b8e7f5 (diff) |
gnu: Add go-github-com-bradenhilton-mozillainstallhash.
* gnu/packages/golang-web.scm (go-github-com-bradenhilton-mozillainstallhash): New variable.
Change-Id: I25db6a11708a9c19617762ea04375bb25262c2c3
Diffstat (limited to 'gnu/packages/golang-web.scm')
-rw-r--r-- | gnu/packages/golang-web.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index e245c9e3df..9055cc929e 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -971,6 +971,34 @@ capable of querying the current time from a remote NTP server as specified in "This package provides SCSS compiler support for Go applications.") (license license:expat))) +(define-public go-github-com-bradenhilton-mozillainstallhash + (package + (name "go-github-com-bradenhilton-mozillainstallhash") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bradenhilton/mozillainstallhash") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0j54ssnvk2vy77g23zrhi9acwblnamj63i7wmmdnb89fjg0xc9km")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/bradenhilton/mozillainstallhash")) + (propagated-inputs + (list go-github-com-bradenhilton-cityhash + go-golang-org-x-text)) + (home-page "https://github.com/bradenhilton/mozillainstallhash") + (synopsis "Generates the hash used in installs of Mozilla software") + (description + "This package provides a functionality to get the hash used to +differentiate between installs of Mozilla software in @code{installs.ini} and +@code{profiles.ini}.") + (license license:expat))) + (define-public go-github-com-caddyserver-certmagic (package (name "go-github-com-caddyserver-certmagic") |