Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
32 lines
739 B
Nix
32 lines
739 B
Nix
{
|
|
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 = "Minimalist re-implementation of the Fusée Gelée exploit";
|
|
mainProgram = "fusee-nano";
|
|
homepage = "https://github.com/DavidBuchanan314/fusee-nano";
|
|
license = lib.licenses.mit;
|
|
platforms = lib.platforms.linux;
|
|
maintainers = [ lib.maintainers.leo60228 ];
|
|
};
|
|
}
|