biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / editors / ox / default.nix
blob24ce2cec46df180b7ba8619d075025b24cdea092
1 { lib, fetchFromGitHub, rustPlatform }:
3 rustPlatform.buildRustPackage rec {
4   pname = "ox";
5   version = "0.2.7";
7   src = fetchFromGitHub {
8     owner = "curlpipe";
9     repo = pname;
10     rev = version;
11     hash = "sha256-4I6RjSCfNyeSQwGn6zX9AhePkqr+uOuhXdV0tat1LqI=";
12   };
14   cargoHash = "sha256-VFrN58SRTRGH+RSc59RIdsysR3umnrU2KM5XVCp9u1Q=";
16   meta = with lib; {
17     description = "An independent Rust text editor that runs in your terminal";
18     homepage = "https://github.com/curlpipe/ox";
19     changelog = "https://github.com/curlpipe/ox/releases/tag/${version}";
20     license = licenses.gpl2Only;
21     maintainers = with maintainers; [ moni ];
22     mainProgram = "ox";
23   };