nixpkgs/pkgs/by-name/ox/oxker/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
641 B
Nix
Raw Normal View History

2022-10-08 17:02:09 +00:00
{ lib, fetchCrate, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "oxker";
2024-12-06 12:37:09 +00:00
version = "0.9.0";
2022-10-08 17:02:09 +00:00
src = fetchCrate {
inherit pname version;
2024-12-06 12:37:09 +00:00
hash = "sha256-XY3LwDagxSi1yeAfqhnbtNRBqJxp0BkhaYZM/T59tGw=";
2022-10-08 17:02:09 +00:00
};
2024-12-06 12:37:09 +00:00
cargoHash = "sha256-SeNrVw1m0B9CV31Pa41YinviWbEdiw50sdcrQpndiCI=";
2022-10-08 17:02:09 +00:00
meta = with lib; {
description = "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 ];
2024-02-11 02:19:15 +00:00
mainProgram = "oxker";
2022-10-08 17:02:09 +00:00
};
}