evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / ox / oxker / package.nix
blobfba55f73ca7cc9572295962edc5a4697dd991898
1 { lib, fetchCrate, rustPlatform }:
3 rustPlatform.buildRustPackage rec {
4   pname = "oxker";
5   version = "0.8.0";
7   src = fetchCrate {
8     inherit pname version;
9     hash = "sha256-5FZDHKYv3/ZEzb0tsI7wxydDU0p7zwfhSG2i4UScf6s=";
10   };
12   cargoHash = "sha256-7SMIN6Nu9W6t27+YoCbJt0HCkNhw/ZU6pn6qRYvrgT8=";
14   meta = with lib; {
15     description = "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     mainProgram = "oxker";
21   };