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-06-08 04:20:44 +00:00
version = "0.3.1";
2022-10-08 17:02:09 +00:00
src = fetchCrate {
inherit pname version;
2023-06-08 04:20:44 +00:00
sha256 = "sha256-35MHq2G2L7yfz+W9uUaRb8fpEp/h0bt2HtK615XwZG8=";
2022-10-08 17:02:09 +00:00
};
2023-06-08 04:20:44 +00:00
cargoHash = "sha256-goIb8BoHSF0g/OWmeZtha+qKlcvLTqwMmYcD2uYUI7E=";
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 ];
};
}