about summary refs log tree commit diff
path: root/pkgs/development/tools/garble/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/tools/garble/default.nix')
-rw-r--r--pkgs/development/tools/garble/default.nix35
1 files changed, 0 insertions, 35 deletions
diff --git a/pkgs/development/tools/garble/default.nix b/pkgs/development/tools/garble/default.nix
deleted file mode 100644
index 438d83405988..000000000000
--- a/pkgs/development/tools/garble/default.nix
+++ /dev/null
@@ -1,35 +0,0 @@
-{ stdenv
-, buildGoModule
-, fetchFromGitHub
-, lib
-, git
-}:
-buildGoModule rec {
-  pname = "garble";
-  version = "0.8.0";
-
-  src = fetchFromGitHub {
-    owner = "burrowers";
-    repo = pname;
-    rev = "v${version}";
-    sha256 = "sha256-f7coWG1CS4UL8GGqwADx5CvIk2sPONPlWW+JgRhFsb8=";
-  };
-
-  vendorHash = "sha256-SOdIlu0QrQokl9j9Ff594+1K6twU1mCuECFQaVKaPV4=";
-
-  # Used for some of the tests.
-  nativeCheckInputs = [git];
-
-  preBuild = lib.optionalString (!stdenv.isx86_64) ''
-    # The test assumex amd64 assembly
-    rm testdata/script/asm.txtar
-  '';
-
-  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;
-    broken = stdenv.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/garble.x86_64-darwin
-  };
-}