2022-10-21 18:38:19 +00:00
|
|
|
{ lib, fetchCrate, rustPlatform }:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "oxker";
|
2023-04-29 16:46:19 +00:00
|
|
|
version = "0.3.0";
|
2022-10-21 18:38:19 +00:00
|
|
|
|
|
|
|
src = fetchCrate {
|
|
|
|
inherit pname version;
|
2023-04-29 16:46:19 +00:00
|
|
|
sha256 = "sha256-VIsop0XjadZQecKRbt+2U2qrMVmPaLZGUuMEY8v+aJ8=";
|
2022-10-21 18:38:19 +00:00
|
|
|
};
|
|
|
|
|
2023-04-29 16:46:19 +00:00
|
|
|
cargoHash = "sha256-wBTbHHCNZvp1xc6iiK6LzBFYsF9RPHA74YM6SDv6x94=";
|
2022-10-21 18:38:19 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A 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 ];
|
|
|
|
};
|
|
|
|
}
|