biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / editors / hecate / default.nix
bloba3e8726b13ecb1d13d3b394c597e8ce964743ba6
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "hecate";
5   version = "unstable-2022-05-03";
7   src = fetchFromGitHub {
8     owner = "evanmiller";
9     repo = "hecate";
10     rev = "7637250f4b2c5b777418b35fa11276d11d5128b0";
11     sha256 = "sha256-8L0ukzPF7aECCeZfwZYKcJAJLpPgotkVJ+OSdwQUjhw=";
12   };
14   vendorHash = "sha256-eyMrTrNarNCB3w8EOeJBmCbVxpMZy25sQ19icVARU1M=";
16   ldflags = [ "-s" "-w" ];
18   meta = with lib; {
19     inherit (src.meta) homepage;
20     description = "terminal hex editor";
21     longDescription = "The Hex Editor From Hell!";
22     license = with licenses; [ mit ];
23     maintainers = with maintainers; [ ramkromberg ];
24     mainProgram = "hecate";
25   };