about summary refs log tree commit diff
path: root/nixpkgs/pkgs/build-support/go/garble.nix
blob: da1e3152ba4cb010d71571057352768eb1e1899d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ stdenv
, buildGoModule
, fetchFromGitHub
, lib
}:
buildGoModule rec {
  pname = "garble";
  version = "20200107";

  src = fetchFromGitHub {
    owner = "burrowers";
    repo = pname;
    rev = "835f4aadf321521acf06aac4d5068473dc4b2ac1";
    sha256 = "sha256-NodsVHRll2YZoxrhmniJvelQOStG82u3kJyc0t8OXD8=";
  };

  vendorSha256 = "sha256-x2fk2QmZDK2yjyfYdK7x+sQjvt7tuggmm8ieVjsNKek=";

  preBuild = ''
    # https://github.com/burrowers/garble/issues/184
    substituteInPlace testdata/scripts/tiny.txt \
      --replace "{6,8}" "{4,8}"
  '' + lib.optionalString (!stdenv.isx86_64) ''
    # The test assumex amd64 assembly
    rm testdata/scripts/asm.txt
  '';

  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;
  };
}