nixpkgs/pkgs/development/tools/fusee-nano/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

27 lines
730 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 ];
};
}