Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / misc / oxker / default.nix
blob2e22cdbd1b3a3d2d33bf258ef3b2bc4eb83a2bbd
1 { lib, fetchCrate, rustPlatform }:
3 rustPlatform.buildRustPackage rec {
4   pname = "oxker";
5   version = "0.3.3";
7   src = fetchCrate {
8     inherit pname version;
9     sha256 = "sha256-2zdsVItGZYQydpC9E/uCbzOE9Xoh7zTqa9DpxA5qNCc=";
10   };
12   cargoHash = "sha256-FXYFQpiK2BGUz9GjsUPS9LWPeezbBQ3A33juoVCl71g=";
14   meta = with lib; {
15     description = "A simple tui to view & control docker containers";
16     homepage = "https://github.com/mrjackwills/oxker";
17     changelog = "https://github.com/mrjackwills/oxker/blob/v${version}/CHANGELOG.md";
18     license = licenses.mit;
19     maintainers = with maintainers; [ siph ];
20   };