garble: move to by-name; nixfmt

This commit is contained in:
wxt
2024-11-03 17:27:14 +08:00
parent 46615171d8
commit a93d66c9d5
2 changed files with 7 additions and 8 deletions
@@ -1,8 +1,9 @@
{ stdenv
, buildGoModule
, fetchFromGitHub
, lib
, git
{
stdenv,
buildGoModule,
fetchFromGitHub,
lib,
git,
}:
buildGoModule rec {
pname = "garble";
@@ -18,7 +19,7 @@ buildGoModule rec {
vendorHash = "sha256-SOdIlu0QrQokl9j9Ff594+1K6twU1mCuECFQaVKaPV4=";
# Used for some of the tests.
nativeCheckInputs = [git];
nativeCheckInputs = [ git ];
preBuild = lib.optionalString (!stdenv.hostPlatform.isx86_64) ''
# The test assumex amd64 assembly
-2
View File
@@ -19450,8 +19450,6 @@ with pkgs;
ganv = callPackage ../development/libraries/ganv { };
garble = callPackage ../development/tools/garble { };
gcab = callPackage ../development/libraries/gcab { };
gcovr = with python3Packages; toPythonApplication gcovr;