rio: 0.0.36 -> 0.0.37
[NixPkgs.git] / pkgs / applications / editors / heh / default.nix
blob0b31e30e67f5fec781df7ac1814d58e87ee0f047
1 { lib
2 , stdenv
3 , rustPlatform
4 , fetchFromGitHub
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "heh";
9   version = "0.5.0";
11   src = fetchFromGitHub {
12     owner = "ndd7xv";
13     repo = pname;
14     rev = "v${version}";
15     hash = "sha256-zkb+HogwioqxZ+BTl7bcDQx9i9uWhT2QdAIXpHqvDl0=";
16   };
18   cargoHash = "sha256-YcTaLq04NhmnJ1pdbiKMRIBSFvHNWNgoAS8Uz8uGGAw=";
20   meta = with lib; {
21     description = "A cross-platform terminal UI used for modifying file data in hex or ASCII.";
22     homepage = "https://github.com/ndd7xv/heh";
23     changelog = "https://github.com/ndd7xv/heh/releases/tag/${src.rev}";
24     license = with licenses; [ mit ];
25     maintainers = with maintainers; [ piturnah ];
26     mainProgram = "heh";
27   };