summary refs log tree commit diff
path: root/pkgs/applications/editors/hecate/default.nix
blob: a0fdcfbb3f66d75678a378b1ee1e24b727007ace (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib, stdenv, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  version = "0.0.1";
  pname = "hecate";

  src = fetchFromGitHub {
    owner  = "evanmiller";
    repo   = "hecate";
    rev    = "v${version}";
    sha256 = "0ymirsd06z3qa9wi59k696mg8f4mhscw8gc5c5zkd0n3n8s0k0z8";
  };

  goPackagePath = "hecate";

  goDeps = ./deps.nix;

  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 ];
    platforms = with platforms; linux;
  };
}