guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/06: gnu: Add go-github-com-djherbis-atime.


From: guix-commits
Subject: 03/06: gnu: Add go-github-com-djherbis-atime.
Date: Tue, 30 Jan 2024 18:02:52 -0500 (EST)

sharlatan pushed a commit to branch master
in repository guix.

commit b998d582218a9c35828f138cde9da5a2e8fdbea7
Author: Thomas Ieong <th.ieong@free.fr>
AuthorDate: Sat Mar 4 00:01:54 2023 +0100

    gnu: Add go-github-com-djherbis-atime.
    
    * gnu/packages/golang-xyz.scm (go-github-com-djherbis-atime): New variable.
    
    Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
    Change-Id: I320070d68e7f590f830060904f5cbdf59d839d1d
---
 gnu/packages/golang-xyz.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index c2484aae6b..778868001d 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -1,4 +1,5 @@
 ;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2023 Thomas Ieong <th.ieong@free.fr>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -32,6 +33,28 @@
 ;;;
 ;;; Code:
 
+(define-public go-github-com-djherbis-atime
+  (package
+    (name "go-github-com-djherbis-atime")
+    (version "1.1.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/djherbis/atime";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0xsz55zpihd9wyrj6qvm3miqzb6x3mnp5apzs0dx1byndhb8adpq"))))
+    (build-system go-build-system)
+    (arguments
+     '(#:import-path "github.com/djherbis/atime"))
+    (home-page "https://github.com/djherbis/atime";)
+    (synopsis "Access Times for files")
+    (description "Package atime provides a platform-independent way to get
+atimes for files.")
+    (license license:expat)))
+
 ;;;
 ;;; Avoid adding new packages to the end of this file. To reduce the chances
 ;;; of a merge conflict, place them above by existing packages with similar



reply via email to

[Prev in Thread] Current Thread [Next in Thread]