{ lib , rustPlatform , fetchFromGitHub , stdenv }: rustPlatform.buildRustPackage rec { pname = "boxxy"; version = "0.5.1"; src = fetchFromGitHub { owner = "queer"; repo = "boxxy"; rev = "v${version}"; hash = "sha256-e6AkxC3TP2StApPSWaadLz/AFmaKBKCrS5HuocvmfQs="; }; cargoHash = "sha256-E3IX3JSc8Rq8Qnx6Lk+PQgGfHptidxPaOqejYJgudlw="; 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; }; }