From 08bbf66c31e4c138c881be2188d977dd6c543b06 Mon Sep 17 00:00:00 2001 From: leo60228 Date: Fri, 2 Jun 2023 16:38:19 -0400 Subject: [PATCH] fusee-nano: init at unstable-2023-05-17 --- pkgs/development/tools/fusee-nano/default.nix | 25 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 27 insertions(+) create mode 100644 pkgs/development/tools/fusee-nano/default.nix diff --git a/pkgs/development/tools/fusee-nano/default.nix b/pkgs/development/tools/fusee-nano/default.nix new file mode 100644 index 000000000000..e1c552002619 --- /dev/null +++ b/pkgs/development/tools/fusee-nano/default.nix @@ -0,0 +1,25 @@ +{ lib, stdenv, fetchFromGitHub, unixtools }: + +stdenv.mkDerivation { + pname = "fusee-nano"; + version = "unstable-2023-05-17"; + + src = fetchFromGitHub { + owner = "DavidBuchanan314"; + repo = "fusee-nano"; + rev = "2979d34f470d02f34594d8d59be1f5c7bf4bf73f"; + hash = "sha256-RUG10wvhB0qEuiLwn8wk6Uxok+gv4bFLD6tbx0P0yDc="; + }; + + nativeBuildInputs = [ unixtools.xxd ]; + + makeFlags = [ "PREFIX=$(out)/bin" ]; + + meta = { + description = "A minimalist re-implementation of the Fusée Gelée exploit"; + homepage = "https://github.com/DavidBuchanan314/fusee-nano"; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.leo60228 ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a119d3dad7d3..b96dc2bde720 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7810,6 +7810,8 @@ with pkgs; fusee-launcher = callPackage ../development/tools/fusee-launcher { }; + fusee-nano = callPackage ../development/tools/fusee-nano { }; + fverb = callPackage ../applications/audio/fverb { }; fwknop = callPackage ../tools/security/fwknop {