forked from mirrors/nixpkgs
commit
4dc548743d
|
@ -12000,6 +12000,12 @@
|
|||
github = "sioodmy";
|
||||
githubId = 81568712;
|
||||
};
|
||||
siph = {
|
||||
name = "Chris Dawkins";
|
||||
email = "dawkins.chris.dev@gmail.com";
|
||||
github = "siph";
|
||||
githubId = 6619112;
|
||||
};
|
||||
schmitthenner = {
|
||||
email = "development@schmitthenner.eu";
|
||||
github = "fkz";
|
||||
|
|
21
pkgs/applications/misc/oxker/default.nix
Normal file
21
pkgs/applications/misc/oxker/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ lib, fetchCrate, rustPlatform }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "oxker";
|
||||
version = "0.1.5";
|
||||
|
||||
src = fetchCrate {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-OhXU61F8XK5ts4GwDUkFv4+FGNFUmJJ9ooRS9/D0yvQ=";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-ldf0XYBhxLL2v0+yBX9Dqq8kYgJZ2f4Lor+rUA0/47E=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "A 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 ];
|
||||
};
|
||||
}
|
|
@ -9895,6 +9895,8 @@ with pkgs;
|
|||
|
||||
overmind = callPackage ../applications/misc/overmind { };
|
||||
|
||||
oxker = callPackage ../applications/misc/oxker { };
|
||||
|
||||
ovh-ttyrec = callPackage ../tools/misc/ovh-ttyrec { };
|
||||
|
||||
ovito = libsForQt5.callPackage ../applications/graphics/ovito {
|
||||
|
|
Loading…
Reference in a new issue