guix-patches
[Top][All Lists]
Advanced

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

[bug#35172] [PATCH] gnu: Add git-lfs.


From: Kei Kebreau
Subject: [bug#35172] [PATCH] gnu: Add git-lfs.
Date: Sat, 06 Apr 2019 10:55:02 -0400
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/26.1 (gnu/linux)

Kei Kebreau <address@hidden> writes:

> +(define-public git-lfs
> +  (package
> +    (name "git-lfs")
> +    (version "2.7.1")
> +    (source (origin
> +              (method git-fetch)
> +              (uri (git-reference
> +                    (url "https://github.com/git-lfs/git-lfs";)
> +                    (commit (string-append "v" version))))
> +              (file-name (git-file-name name version))
> +              (sha256
> +               (base32
> +                "10v38w8qfz0x8750kv31n8gg2dimvq4wz40m374pd1xaypfs9670"))))
> +    (build-system go-build-system)
> +    (arguments
> +     '(#:import-path "github.com/git-lfs/git-lfs"))
> +    (home-page "https://git-lfs.github.com/";)
> +    (synopsis "Git extension for versioning large files")
> +    (description
> +     "Git Large File Storage (LFS) replaces large files such as audio 
> samples,
> +videos, datasets, and graphics with text pointers inside Git, while storing 
> the
> +file contents on a remote server like GitHub.com or GitHub Enterprise.")

I realize that I can remove the GitHub promotion from the description
without any loss of understanding.

> +    (license license:expat)))

This is my first Go package, so any corrections or tips are especially
appreciated!





reply via email to

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