From c3dc516fe20b24540ca5307c063f26cf458d00b2 Mon Sep 17 00:00:00 2001 From: figsoda Date: Wed, 15 Feb 2023 14:06:52 -0500 Subject: [PATCH] boxxy: 0.2.7 -> 0.3.4, add figsoda as a maintainer Diff: https://github.com/queer/boxxy/compare/v0.2.7...v0.3.4 --- pkgs/tools/misc/boxxy/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/misc/boxxy/default.nix b/pkgs/tools/misc/boxxy/default.nix index faadff736577..6c42e7131c86 100644 --- a/pkgs/tools/misc/boxxy/default.nix +++ b/pkgs/tools/misc/boxxy/default.nix @@ -1,26 +1,28 @@ { lib , rustPlatform , fetchFromGitHub +, stdenv }: rustPlatform.buildRustPackage rec { pname = "boxxy"; - version = "0.2.7"; + version = "0.3.4"; src = fetchFromGitHub { owner = "queer"; repo = "boxxy"; rev = "v${version}"; - hash = "sha256-mvSarA0rZuOQvgf2NJXWIWoeZtvb+D/GofAHPKQDH6U="; + hash = "sha256-bFDGZhwawOPzXR0ODD61h/wVUibNVl7ayiV9jfvTI6c="; }; - cargoHash = "sha256-Psc9qErqi3aangNowXxhkEXphFCR7pp+DKTKtk6tMo0="; + cargoHash = "sha256-oO0cb5PZ2BdJnB+Uyu5ZHpYR5znoeGa/RpyQAXLlrBQ="; 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 ]; + maintainers = with maintainers; [ dit7ya figsoda ]; platforms = platforms.linux; + broken = stdenv.isAarch64; }; }