nixpkgs/pkgs/by-name/ox/oxker/package.nix

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

23 lines
641 B
Nix
Raw Normal View History

2022-10-08 17:02:09 +00:00
{ lib, fetchCrate, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "oxker";
2024-10-22 23:55:36 +00:00
version = "0.8.0";
2022-10-08 17:02:09 +00:00
src = fetchCrate {
inherit pname version;
2024-10-22 23:55:36 +00:00
hash = "sha256-5FZDHKYv3/ZEzb0tsI7wxydDU0p7zwfhSG2i4UScf6s=";
2022-10-08 17:02:09 +00:00
};
2024-10-22 23:55:36 +00:00
cargoHash = "sha256-7SMIN6Nu9W6t27+YoCbJt0HCkNhw/ZU6pn6qRYvrgT8=";
2022-10-08 17:02:09 +00:00
meta = with lib; {
description = "Simple tui to view & control docker containers";
homepage = "https://github.com/mrjackwills/oxker";
changelog = "https://github.com/mrjackwills/oxker/blob/v${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ siph ];
2024-02-11 02:19:15 +00:00
mainProgram = "oxker";
2022-10-08 17:02:09 +00:00
};
}