c594a97518
GitOrigin-RevId: 301aada7a64812853f2e2634a530ef5d34505048
25 lines
664 B
Nix
25 lines
664 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "hecate";
|
|
version = "unstable-2022-05-03";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "evanmiller";
|
|
repo = "hecate";
|
|
rev = "7637250f4b2c5b777418b35fa11276d11d5128b0";
|
|
sha256 = "sha256-8L0ukzPF7aECCeZfwZYKcJAJLpPgotkVJ+OSdwQUjhw=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-eyMrTrNarNCB3w8EOeJBmCbVxpMZy25sQ19icVARU1M=";
|
|
|
|
ldflags = [ "-s" "-w" ];
|
|
|
|
meta = with lib; {
|
|
inherit (src.meta) homepage;
|
|
description = "terminal hex editor";
|
|
longDescription = "The Hex Editor From Hell!";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ ramkromberg ];
|
|
};
|
|
}
|