nixpkgs/pkgs/tools/security/gitjacker/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
1021 B
Nix
Raw Normal View History

2021-01-20 22:22:31 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
, git
, stdenv
}:
buildGoModule rec {
pname = "gitjacker";
2021-03-30 12:01:35 +00:00
version = "0.1.0";
2021-01-20 22:22:31 +00:00
src = fetchFromGitHub {
owner = "liamg";
repo = "gitjacker";
rev = "v${version}";
2021-03-30 12:01:35 +00:00
sha256 = "sha256-rEn9FpcRfEt2yGepIPEAO9m8JeVb+nMhYMBWhC/barc=";
2021-01-20 22:22:31 +00:00
};
vendorSha256 = null;
propagatedBuildInputs = [ git ];
nativeCheckInputs = [ git ];
2021-01-20 22:22:31 +00:00
doCheck = !stdenv.isDarwin;
preCheck = ''
export PATH=$TMPDIR/usr/bin:$PATH
'';
meta = with lib; {
description = "Leak git repositories from misconfigured websites";
longDescription = ''
Gitjacker downloads git repositories and extracts their contents
from sites where the .git directory has been mistakenly uploaded.
It will still manage to recover a significant portion of a repository
even where directory listings are disabled.
'';
homepage = "https://github.com/liamg/gitjacker";
license = with licenses; [ unlicense ];
maintainers = with maintainers; [ fab ];
};
}