Skip to content

Commit

Permalink
repro-get: init at 0.2.1
Browse files Browse the repository at this point in the history
Co-authored-by: Robert Hensing <roberth@users.noreply.github.com>
  • Loading branch information
MatthewCroughan and roberth committed Dec 27, 2022
1 parent 21f6185 commit 351a371
Show file tree
Hide file tree
Showing 2 changed files with 72 additions and 0 deletions.
70 changes: 70 additions & 0 deletions pkgs/tools/package-management/repro-get/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
{ lib
, buildGoModule
, fetchFromGitHub
, installShellFiles
, testers
, repro-get
, cacert
}:

buildGoModule rec {
pname = "repro-get";
version = "0.2.1";

src = fetchFromGitHub {
owner = "reproducible-containers";
repo = "repro-get";
rev = "v${version}";
sha256 = "sha256-3cvKHwAyPYwR5VlhpPJH+3BK9Kw7dTGOPN1q2RnwsG0=";
};

vendorSha256 = "sha256-ebvtPc0QiP7fNiWYjd7iLG/4iH4DqWV/eaDHvmV/H3Y=";

nativeBuildInputs = [ installShellFiles ];

# The pkg/version test requires internet access, so disable it here and run it
# in passthru.pkg-version
preCheck = ''
rm -rf pkg/version
'';

ldflags = [
"-s"
"-w"
"-X github.com/reproducible-containers/${pname}/pkg/version.Version=v${version}"
];

postInstall = ''
installShellCompletion --cmd repro-get \
--bash <($out/bin/repro-get completion bash) \
--fish <($out/bin/repro-get completion fish) \
--zsh <($out/bin/repro-get completion zsh)
'';

passthru.tests = {
"pkg/version" = repro-get.overrideAttrs (old: {
subPackages = [ "pkg/version" ];
fixupPhase = "rm -rf $out && touch $out";
preCheck = "";
dontInstall = true;
outputHash = "sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=";
outputHashAlgo = "sha256";
outputHashMode = "flat";
nativeBuildInputs = old.nativeBuildInputs ++ [ cacert ];
});
version = testers.testVersion {
package = repro-get;
command = "HOME=$(mktemp -d) repro-get -v";
version = "${version}";
};
};

outputs = [ "out" ];

meta = with lib; {
description = "Reproducible apt/dnf/apk/pacman, with content-addressing";
homepage = "https://github.com/reproducible-containers/repro-get";
license = licenses.asl20;
maintainers = with maintainers; [ matthewcroughan ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -24724,6 +24724,8 @@ with pkgs;

reproxy = callPackage ../servers/reproxy { };

repro-get = callPackage ../tools/package-management/repro-get { };

restic = callPackage ../tools/backup/restic { };

restic-rest-server = callPackage ../tools/backup/restic/rest-server.nix { };
Expand Down

0 comments on commit 351a371

Please sign in to comment.