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 19:02:09 +02:00
{ lib, fetchCrate, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "oxker";
2023-09-05 05:06:09 +02:00
version = "0.3.2";
2022-10-08 19:02:09 +02:00
src = fetchCrate {
inherit pname version;
2023-09-05 05:06:09 +02:00
sha256 = "sha256-HFZSIzP3G6f78gTOpzZFG5ZAo5Lo6VuxQe6xMvCVfss=";
2022-10-08 19:02:09 +02:00
};
2023-09-05 05:06:09 +02:00
cargoHash = "sha256-ZsqxlwgXqw9eUEjw1DLBMz05V/y/ZbcrCL6I8TcnnDs=";
2022-10-08 19:02:09 +02: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 ];
};
}