garble: init at 2020-01-07
This commit is contained in:
parent
a40939b6ae
commit
599132aff2
24
pkgs/build-support/go/garble.nix
Normal file
24
pkgs/build-support/go/garble.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ buildGoModule
|
||||
, fetchFromGitHub
|
||||
, lib
|
||||
}:
|
||||
buildGoModule rec {
|
||||
pname = "garble";
|
||||
version = "20200107";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "burrowers";
|
||||
repo = pname;
|
||||
rev = "835f4aadf321521acf06aac4d5068473dc4b2ac1";
|
||||
sha256 = "sha256-NodsVHRll2YZoxrhmniJvelQOStG82u3kJyc0t8OXD8=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-x2fk2QmZDK2yjyfYdK7x+sQjvt7tuggmm8ieVjsNKek=";
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
@ -13698,6 +13698,8 @@ in
|
||||
|
||||
ganv = callPackage ../development/libraries/ganv { };
|
||||
|
||||
garble = callPackage ../build-support/go/garble.nix { };
|
||||
|
||||
gcab = callPackage ../development/libraries/gcab { };
|
||||
|
||||
gcovr = with python3Packages; toPythonApplication gcovr;
|
||||
|
Loading…
Reference in New Issue
Block a user