3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/editors/hecate/default.nix

26 lines
664 B
Nix
Raw Normal View History

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