Commit Graph

37 Commits

Author SHA1 Message Date
Adam Joseph
261f090079 git-lfs: remove leaveDotGit=true
Since commit 0b0119f1ea on 2022-Jun-04,
`git-lfs` no longer builds with `--option substituters ""`:

```
error: hash mismatch in fixed-output derivation '/nix/store/2g1jwczzld8l190s2apc0ihffmil385f-source.drv':
         specified: sha256-3gVUPfZs5GViEA3D7Zm5NdxhuEz9DhwPLoQqHFdGCrI=
            got:    sha256-D7ZA04HZOG8DcejW+S91c5HjVIW+SLMzXZHylpARwrQ=
note: keeping build directory '/tmp/nix-build-source.drv-3'
error: 1 dependencies of derivation '/nix/store/jzl8ypirdrii6aik2pss84df7sds7vqr-git-lfs-3.2.0.drv' failed to build
``

It appears that the hash
`sha256-3gVUPfZs5GViEA3D7Zm5NdxhuEz9DhwPLoQqHFdGCrI=` was calculated
based on `fetchDotGit=false`, and was in cachix, so nobody noticed
that the hash doesn't match the fetcher expression.

This is yet another case of an ongoing problem with nixpkgs: we have
no way of noticing when a fetcher expression has the wrong hash if
that incorrect hash happens to be the hash of something that is in
cachix.  Apparently nobody (else) is checking that nixpkgs works with
`--option substituters ""`.
2022-07-03 21:34:49 -07:00
squalus
084294c064 git-lfs: fix cross compile 2022-06-15 13:43:46 -07:00
Aaron Jheng
0b0119f1ea
git-lfs: use buildGoModule 2022-06-04 03:14:28 +00:00
Mario Rodas
2e17187eba git-lfs: 3.1.4 -> 3.2.0
https://github.com/git-lfs/git-lfs/releases/tag/v3.2.0
2022-05-25 04:20:00 +00:00
R. Ryantm
1acf421ff2 git-lfs: 3.1.2 -> 3.1.4 2022-04-22 22:47:49 +00:00
R. Ryantm
ce85c6a203 git-lfs: 3.1.1 -> 3.1.2 2022-02-18 08:55:03 +00:00
R. Ryantm
86e3298840 git-lfs: 3.0.2 -> 3.1.1 2022-02-15 12:43:58 +00:00
Will Jones
7ec65f3354 git-lfs: Build subcommands
The current version of `git-lfs` doesn't work very well due to a missing
code-generation step in its build process. This commit fixes its
derivation so that this step is run.
2022-01-17 09:19:18 +00:00
Mario Rodas
fe4d3d53ba git-lfs: 3.0.1 -> 3.0.2
https://github.com/git-lfs/git-lfs/releases/tag/v3.0.2
2021-10-28 04:20:00 +00:00
Mario Rodas
db287c380d git-lfs: 2.13.3 -> 3.0.1 2021-10-22 22:16:50 -05:00
zowoq
e6494966dd treewide: buildFlagsArray -> ldflags 2021-08-26 15:43:28 +10:00
R. RyanTM
b177e5ed99 git-lfs: 2.13.2 -> 2.13.3 2021-03-27 11:15:05 +00:00
Mario Rodas
88710b0751 git-lfs: 2.13.1 -> 2.13.2
https://github.com/git-lfs/git-lfs/releases/tag/v2.13.2
2021-01-13 21:00:00 -05:00
Profpatsch
4a7f99d55d treewide: with stdenv.lib; in meta -> with lib;
Part of: https://github.com/NixOS/nixpkgs/issues/108938

meta = with stdenv.lib;

is a widely used pattern. We want to slowly remove
the `stdenv.lib` indirection and encourage people
to use `lib` directly. Thus let’s start with the meta
field.

This used a rewriting script to mostly automatically
replace all occurances of this pattern, and add the
`lib` argument to the package header if it doesn’t
exist yet.

The script in its current form is available at
https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2021-01-11 10:38:22 +01:00
Mario Rodas
fa9d40263e git-lfs: 2.12.1 -> 2.13.1
https://github.com/git-lfs/git-lfs/releases/tag/v2.13.1
2020-12-13 04:20:00 +00:00
Mario Rodas
422d223757 git-lfs: 2.12.0 -> 2.12.1
https://github.com/git-lfs/git-lfs/releases/tag/v2.12.1
2020-11-04 04:20:00 +00:00
Mario Rodas
d8d4fc6f6d git-lfs: 2.11.0 -> 2.12.0
https://github.com/git-lfs/git-lfs/releases/tag/v2.12.0
2020-09-02 04:20:00 +00:00
Mario Rodas
209432351e
git-lfs: 2.10.0 -> 2.11.0
Changelog: https://github.com/git-lfs/git-lfs/releases/tag/v2.11.0
2020-05-09 04:20:00 -05:00
Mario Rodas
06bed53569
git-lfs: fix manpage install 2020-05-02 11:24:15 -05:00
Mario Rodas
7156ab6d85
git-lfs: add marsam to maintainers 2020-05-01 04:20:00 -05:00
Mario Rodas
ae04f8efae
git-lfs: install man pages 2020-05-01 04:20:00 -05:00
Jonathan Ringer
5c171862b6 git-lfs: 2.8.0 -> 2.10.0 2020-04-02 16:11:45 +00:00
Mario Rodas
9e968db302 git-lfs: use buildGoPackage 2019-09-21 04:34:00 -05:00
Roman Volosatovs
9630cb4b8d
git-lfs: 2.7.2 -> 2.8.0, ensure go 1.13 compatibility 2019-09-10 22:55:30 +02:00
volth
46420bbaa3 treewide: name -> pname (easy cases) (#66585)
treewide replacement of

stdenv.mkDerivation rec {
  name = "*-${version}";
  version = "*";

to pname
2019-08-15 13:41:18 +01:00
Will Dietz
e9568d3b01
git-lfs: 2.5.2 -> 2.7.2 2019-05-15 17:17:00 -05:00
Vladyslav Mykhailichenko
dbc3d50396 git-lfs: 2.4.2 -> 2.5.2 2018-09-17 23:04:22 +03:00
Vladyslav M
5c16e62d4b git-lfs: 2.3.4 -> 2.4.2 (#41249) 2018-05-30 23:39:12 +02:00
Robin Gloster
d1c8c04ea6
git-lfs: 2.3.3 -> 2.3.4 2017-10-22 14:14:13 +02:00
Mathias Schreck
bd559dcea7 git-lfs: 2.2.1 -> 2.3.3 2017-10-10 23:47:24 +02:00
Mathias Schreck
e19a7068ba git-lfs: 2.0.2 -> 2.2.1 2017-08-05 14:22:18 +02:00
James ‘Twey’ Kay
cba00cb44b
git-lfs: 1.3.1 -> 2.0.2
fixes #25004
2017-04-18 21:39:12 +02:00
Philipp Hausmann
d94ec6ce14 git-lfs: 2016-06-7 -> 1.3.1 2016-08-03 22:36:01 +02:00
zimbatm
a5a1d45636 git-lfs: 1.2.0 -> 2016-06-07
Fixes import issues after go1.5+
2016-06-09 16:11:33 +02:00
Kamil Chmielewski
bbc37e0eb7 Moving from fetchgit generated by go2nix to fetchFromGitHub where rev is
a tag
2016-06-09 13:08:10 +02:00
Kamil Chmielewski
7eb671ebcd no more goPackages 2016-06-09 13:08:00 +02:00
Kamil Chmielewski
ece0626593 git-lfs: extracted from goPackages 2016-06-09 11:21:30 +02:00