2021-02-20 01:45:04 +00:00
|
|
|
{ stdenv
|
|
|
|
, buildGoModule
|
2021-02-10 08:22:57 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, lib
|
2022-01-29 21:42:46 +00:00
|
|
|
, git
|
2021-02-10 08:22:57 +00:00
|
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "garble";
|
2022-09-26 14:59:51 +00:00
|
|
|
version = "0.7.2";
|
2021-02-10 08:22:57 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "burrowers";
|
|
|
|
repo = pname;
|
2022-01-29 21:42:46 +00:00
|
|
|
rev = "v${version}";
|
2022-09-26 14:59:51 +00:00
|
|
|
sha256 = "sha256-T6iUhfBcHlz9oUuovwU4ljHh4y6PRd3sRhwG6RwuspM=";
|
2021-02-10 08:22:57 +00:00
|
|
|
};
|
|
|
|
|
2022-09-26 14:59:51 +00:00
|
|
|
vendorSha256 = "sha256-lGU9jbeOM8tSYZGIqQhH5I2RlBGnqrA6JUQpuHrLwKU=";
|
2021-02-10 08:22:57 +00:00
|
|
|
|
2022-01-29 21:42:46 +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
|
2022-09-26 17:36:29 +00:00
|
|
|
rm testdata/script/asm.txtar
|
2021-02-20 01:45:04 +00:00
|
|
|
'';
|
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|