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
618 B
Nix
Raw Normal View History

2022-10-08 17:02:09 +00:00
{ lib, fetchCrate, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "oxker";
2023-02-08 19:12:42 +00:00
version = "0.2.3";
2022-10-08 17:02:09 +00:00
src = fetchCrate {
inherit pname version;
2023-02-08 19:12:42 +00:00
sha256 = "sha256-J+3wi1nqkxR3ZDfR+F3rvFjUz1DJ7/jhjmcvFdMzWYc=";
2022-10-08 17:02:09 +00:00
};
2023-02-08 19:12:42 +00:00
cargoHash = "sha256-oQPCUm/X2vt6wN5AKhtgq8tzQQrp0H42bBK7Az+I9BE=";
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 ];
};
}