nixpkgs/pkgs/applications/editors/hecate/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
690 B
Nix
Raw Normal View History

2022-10-07 02:26:59 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
2016-10-18 16:24:43 +00:00
2022-10-07 02:26:59 +00:00
buildGoModule rec {
pname = "hecate";
2022-10-07 02:26:59 +00:00
version = "unstable-2022-05-03";
2016-10-18 16:24:43 +00:00
src = fetchFromGitHub {
2022-10-07 02:26:59 +00:00
owner = "evanmiller";
repo = "hecate";
rev = "7637250f4b2c5b777418b35fa11276d11d5128b0";
sha256 = "sha256-8L0ukzPF7aECCeZfwZYKcJAJLpPgotkVJ+OSdwQUjhw=";
2016-10-18 16:24:43 +00:00
};
vendorHash = "sha256-eyMrTrNarNCB3w8EOeJBmCbVxpMZy25sQ19icVARU1M=";
2016-10-18 16:24:43 +00:00
2022-10-07 02:26:59 +00:00
ldflags = [ "-s" "-w" ];
2016-10-18 16:24:43 +00:00
meta = with lib; {
2016-10-18 16:24:43 +00:00
inherit (src.meta) homepage;
description = "terminal hex editor";
longDescription = "The Hex Editor From Hell!";
license = with licenses; [ mit ];
maintainers = with maintainers; [ ramkromberg ];
2023-11-27 01:17:53 +00:00
mainProgram = "hecate";
2016-10-18 16:24:43 +00:00
};
}