nixpkgs/pkgs/build-support/go/garble.nix

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

36 lines
890 B
Nix
Raw Normal View History

2021-02-20 01:45:04 +00:00
{ stdenv
, buildGoModule
2021-02-10 08:22:57 +00:00
, fetchFromGitHub
, lib
, git
2021-02-10 08:22:57 +00:00
}:
buildGoModule rec {
pname = "garble";
2022-03-23 06:31:49 +00:00
version = "0.6.0";
2021-02-10 08:22:57 +00:00
src = fetchFromGitHub {
owner = "burrowers";
repo = pname;
rev = "v${version}";
2022-03-23 06:31:49 +00:00
sha256 = "sha256-VeqF1MB8knM+NtG9Y+x1g2OF7LFZRC8/c8jicGP3vpo=";
2021-02-10 08:22:57 +00:00
};
2022-03-23 06:31:49 +00:00
vendorSha256 = "sha256-FQMeA6VUDQa6wpvMoYsigkzukQ0dArAkysiksJWq+iY=";
2021-02-10 08:22:57 +00:00
# Used for some of the tests.
checkInputs = [git];
preBuild = lib.optionalString (!stdenv.isx86_64) ''
2021-02-20 01:45:04 +00:00
# The test assumex amd64 assembly
rm testdata/scripts/asm.txt
'';
2021-02-10 08:22:57 +00:00
meta = {
description = "Obfuscate Go code by wrapping the Go toolchain";
homepage = "https://github.com/burrowers/garble/";
maintainers = with lib.maintainers; [ davhau ];
license = lib.licenses.bsd3;
2022-01-03 23:53:54 +00:00
broken = stdenv.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/garble.x86_64-darwin
2021-02-10 08:22:57 +00:00
};
}