Unverified Commit 7b4b03d2 authored by figsoda's avatar figsoda Committed by GitHub
Browse files

Merge pull request #215974 from dit7ya/boxxy

boxxy: init at 0.2.7
parents 804349a8 9cb3857b
Loading
Loading
Loading
Loading
+26 −0
Original line number Diff line number Diff line
{ lib
, rustPlatform
, fetchFromGitHub
}:

rustPlatform.buildRustPackage rec {
  pname = "boxxy";
  version = "0.2.7";

  src = fetchFromGitHub {
    owner = "queer";
    repo = "boxxy";
    rev = "v${version}";
    hash = "sha256-mvSarA0rZuOQvgf2NJXWIWoeZtvb+D/GofAHPKQDH6U=";
  };

  cargoHash = "sha256-Psc9qErqi3aangNowXxhkEXphFCR7pp+DKTKtk6tMo0=";

  meta = with lib; {
    description = "Puts bad Linux applications in a box with only their files";
    homepage = "https://github.com/queer/boxxy";
    license = licenses.mit;
    maintainers = with maintainers; [ dit7ya ];
    platforms = platforms.linux;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -2859,6 +2859,8 @@ with pkgs;
  boxes = callPackage ../tools/text/boxes { };
  boxxy = callPackage ../tools/misc/boxxy { };
  boundary = callPackage ../tools/networking/boundary { };
  chamber = callPackage ../tools/admin/chamber {  };