biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / fusee-nano / default.nix
blob67706b726f977ca45f97ba39608c5b926e1f21f7
1 { lib, stdenv, fetchFromGitHub, unixtools }:
3 stdenv.mkDerivation {
4   pname = "fusee-nano";
5   version = "unstable-2023-05-17";
7   src = fetchFromGitHub {
8     owner = "DavidBuchanan314";
9     repo = "fusee-nano";
10     rev = "2979d34f470d02f34594d8d59be1f5c7bf4bf73f";
11     hash = "sha256-RUG10wvhB0qEuiLwn8wk6Uxok+gv4bFLD6tbx0P0yDc=";
12   };
14   nativeBuildInputs = [ unixtools.xxd ];
16   makeFlags = [ "PREFIX=$(out)/bin" ];
18   meta = {
19     description = "A minimalist re-implementation of the Fusée Gelée exploit";
20     mainProgram = "fusee-nano";
21     homepage = "https://github.com/DavidBuchanan314/fusee-nano";
22     license = lib.licenses.mit;
23     platforms = lib.platforms.linux;
24     maintainers = [ lib.maintainers.leo60228 ];
25   };