Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, fetchCrate, rustPlatform }: 2 3rustPlatform.buildRustPackage rec { 4 pname = "oxker"; 5 version = "0.3.0"; 6 7 src = fetchCrate { 8 inherit pname version; 9 sha256 = "sha256-VIsop0XjadZQecKRbt+2U2qrMVmPaLZGUuMEY8v+aJ8="; 10 }; 11 12 cargoHash = "sha256-wBTbHHCNZvp1xc6iiK6LzBFYsF9RPHA74YM6SDv6x94="; 13 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 }; 21}