biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / misc / oxker / default.nix
blob6e97bad8f913bbf3b39b55dc55d6933f6d385588
1 { lib, fetchCrate, rustPlatform }:
3 rustPlatform.buildRustPackage rec {
4   pname = "oxker";
5   version = "0.6.2";
7   src = fetchCrate {
8     inherit pname version;
9     sha256 = "sha256-pHyIL5Jmldsa0ZNMiYpBD+9zxPv8Blg23nnWD2YmHMI=";
10   };
12   cargoHash = "sha256-N1Cv89njL9QCIs3HclcjsqgSUSMEckis8zyVqepeW70=";
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     mainProgram = "oxker";
21   };