diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-07 15:30:07 +0000 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-21 23:47:43 +0000 |
| commit | 8d5d6882fd2ad422eee9844dbc3d100180a5ba6c (patch) | |
| tree | 3a9de9bef63a50931290279f14362cc3cd8f46f1 /gnu/packages | |
| parent | 86c9adc597823f7827ae8117b92688039572707a (diff) | |
gnu: Remove go-github-com-burntsushi-locker.
Not in use by any packages in Guix, no updates for the last 8 years.
* gnu/packages/golang.scm (go-github-com-burntsushi-locker): Delete variable.
Change-Id: I5a5dc69dedcc91d51cc1008e9a0cb783800cba79
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/golang.scm | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index ed5d599fd4f..3a1e528c909 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -3026,40 +3026,6 @@ over strings.") "The terminfo package implements terminfo database reading for Go.") (license license:expat))) -(define-public go-github-com-burntsushi-locker - (let ((commit "a6e239ea1c69bff1cfdb20c4b73dadf52f784b6a") - (revision "0")) - (package - (name "go-github-com-burntsushi-locker") - (version (git-version "0.0.0" revision commit)) - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/BurntSushi/locker") - (commit commit))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "1xak4aync4klswq5217qvw191asgla51jr42y94vp109lirm5dzg")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/BurntSushi/locker")) - (home-page "https://github.com/BurntSushi/locker") - (synopsis "Manage named ReadWrite mutexes in Go") - (description "Golang package for conveniently using named read/write -locks. These appear to be especially useful for synchronizing access to -session based information in web applications. - -The common use case is to use the package level functions, which use a package -level set of locks (safe to use from multiple goroutines -simultaneously). However, you may also create a new separate set of locks -test. - -All locks are implemented with read-write mutexes. To use them like a regular -mutex, simply ignore the RLock/RUnlock functions.") - (license license:unlicense)))) - (define-public go-github-com-cheekybits-genny (package (name "go-github-com-cheekybits-genny") |
