{ lib , rustPlatform , fetchFromGitHub , pkg-config , oniguruma , stdenv }: rustPlatform.buildRustPackage rec { pname = "boxxy"; version = "0.8.0"; src = fetchFromGitHub { owner = "queer"; repo = "boxxy"; rev = "v${version}"; hash = "sha256-I7VQfLCD+nfFllbns7yjYMl9hNwM8AgUbiHte4vMciM="; }; cargoHash = "sha256-xtyiJZ9jPP2M0pUpMwQlUa9QgsRhFLqEm+hE3K4WO88="; nativeBuildInputs = [ pkg-config ]; buildInputs = [ oniguruma ]; env = { RUSTONIG_SYSTEM_LIBONIG = true; }; 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 figsoda ]; platforms = platforms.linux; broken = stdenv.isAarch64; }; }