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

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

24 lines
654 B
Nix
Raw Normal View History

2021-02-07 05:21:34 +00:00
{ lib, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "ox";
version = "0.2.7";
src = fetchFromGitHub {
owner = "curlpipe";
repo = pname;
rev = version;
2023-09-05 09:35:11 +00:00
hash = "sha256-4I6RjSCfNyeSQwGn6zX9AhePkqr+uOuhXdV0tat1LqI=";
2021-02-07 05:21:34 +00:00
};
2023-09-05 09:35:11 +00:00
cargoHash = "sha256-VFrN58SRTRGH+RSc59RIdsysR3umnrU2KM5XVCp9u1Q=";
2021-02-07 05:21:34 +00:00
meta = with lib; {
description = "An independent Rust text editor that runs in your terminal";
homepage = "https://github.com/curlpipe/ox";
changelog = "https://github.com/curlpipe/ox/releases/tag/${version}";
license = licenses.gpl2Only;
2023-11-17 10:03:27 +00:00
maintainers = with maintainers; [ moni ];
2021-02-07 05:21:34 +00:00
};
}