From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:48913) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hCmRN-0000HN-D6 for guix-patches@gnu.org; Sat, 06 Apr 2019 10:37:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hCmRM-0005dT-7B for guix-patches@gnu.org; Sat, 06 Apr 2019 10:37:05 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:33810) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hCmRM-0005dN-13 for guix-patches@gnu.org; Sat, 06 Apr 2019 10:37:04 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hCmRL-0003rO-Td for guix-patches@gnu.org; Sat, 06 Apr 2019 10:37:03 -0400 Subject: [bug#35172] [PATCH] gnu: Add git-lfs. Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:48452) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hCmQC-0008DM-U1 for guix-patches@gnu.org; Sat, 06 Apr 2019 10:35:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hCmQ5-00052s-PD for guix-patches@gnu.org; Sat, 06 Apr 2019 10:35:47 -0400 Received: from mout02.posteo.de ([185.67.36.66]:52343) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hCmQ4-00051K-UA for guix-patches@gnu.org; Sat, 06 Apr 2019 10:35:45 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id 2AB3F2400FB for ; Sat, 6 Apr 2019 16:35:38 +0200 (CEST) From: Kei Kebreau Date: Sat, 6 Apr 2019 10:35:33 -0400 Message-Id: <20190406143533.7979-1-kkebreau@posteo.net> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 35172@debbugs.gnu.org Cc: Kei Kebreau * gnu/packages/version-control.scm (git-lfs): New variable. --- gnu/packages/version-control.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-cont= rol.scm index 50284182c9..091bc988cf 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm @@ -23,6 +23,7 @@ ;;; Copyright =C2=A9 2018 Timothy Sample ;;; Copyright =C2=A9 2018 Arun Isaac ;;; Copyright =C2=A9 2019 Jovany Leandro G.C +;;; Copyright =C2=A9 2019 Kei Kebreau ;;; ;;; This file is part of GNU Guix. ;;; @@ -47,6 +48,7 @@ #:use-module (guix git-download) #:use-module (guix build-system cmake) #:use-module (guix build-system gnu) + #:use-module (guix build-system go) #:use-module (guix build-system python) #:use-module (guix build-system trivial) #:use-module (gnu packages apr) @@ -2137,3 +2139,27 @@ design goals are to reduce the pain of resolving m= erge conflicts by finding the smallest possible conflicts and to allow a merge to be saved, tested= , interrupted, published, and collaborated on while in progress.") (license license:gpl2+))) + +(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 sa= mples, +videos, datasets, and graphics with text pointers inside Git, while stor= ing the +file contents on a remote server like GitHub.com or GitHub Enterprise.") + (license license:expat))) --=20 2.21.0