Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / tools / fusee-nano / default.nix
blobe1c5520026199810108e1e18f85a0a9051c3a7f1
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     homepage = "https://github.com/DavidBuchanan314/fusee-nano";
21     license = lib.licenses.mit;
22     platforms = lib.platforms.linux;
23     maintainers = [ lib.maintainers.leo60228 ];
24   };