lol

Merge pull request #256106 from figsoda/fx

fx: 30.0.0 -> 30.0.2

authored by

figsoda and committed by
GitHub
6706ab69 dcdf6002

+13 -4
+13 -4
pkgs/development/tools/fx/default.nix
··· 1 - { lib, buildGoModule, fetchFromGitHub }: 1 + { lib, buildGoModule, fetchFromGitHub, fetchpatch }: 2 2 3 3 buildGoModule rec { 4 4 pname = "fx"; 5 - version = "30.0.0"; 5 + version = "30.0.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "antonmedv"; 9 9 repo = pname; 10 10 rev = version; 11 - hash = "sha256-MRWDitL9nATi6+oaOJ/A+iaNLztWBZ+Mrs7Hkt0lhL8="; 11 + hash = "sha256-dpIkWgABATDyG3pCdeDKVar53eBHFP3f9XNKkTrr96c="; 12 12 }; 13 13 14 - vendorHash = "sha256-cIyh/FC1lcUgPeUZKrh+kCZmSKGE7Bo411eI0dZeMx4="; 14 + patches = [ 15 + # fix failing test 16 + (fetchpatch { 17 + name = "fix-dig-test.patch"; 18 + url = "https://github.com/antonmedv/fx/commit/adf3775828157d903e3f32ab4023fe750fa85e68.patch"; 19 + hash = "sha256-/6UfI0IW/+ZbgXi3W6BRTfVPko7V4s/NnaunvLDcw2A="; 20 + }) 21 + ]; 22 + 23 + vendorHash = "sha256-FyV3oaI4MKl0LKJf23XIeUmvFsa1DvQw2pq5Heza3Ws="; 15 24 16 25 meta = with lib; { 17 26 description = "Terminal JSON viewer";