nixpkgs/pkgs/applications/misc/oxker/default.nix

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

22 lines
620 B
Nix
Raw Normal View History

2022-10-08 17:02:09 +00:00
{ lib, fetchCrate, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "oxker";
2022-11-16 18:23:42 +00:00
version = "0.1.7";
2022-10-08 17:02:09 +00:00
src = fetchCrate {
inherit pname version;
2022-11-16 18:23:42 +00:00
sha256 = "sha256-kMomzIViN7ooBsjUfCIk0XRi4WtXtiaHWHT2pECx//k=";
2022-10-08 17:02:09 +00:00
};
2022-11-16 18:23:42 +00:00
cargoSha256 = "sha256-ASBu4p8+/Donmynnyryktc6dXA3yiOb9w5XpmN4PotY=";
2022-10-08 17:02:09 +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 ];
};
}