10 stdenvNoCC.mkDerivation {
12 version = "unstable-2023-07-31";
14 src = fetchFromGitHub {
17 rev = "17baa4047073e20572403b70703c69696af6b68d";
18 hash = "sha256-LzOhrFFjGs9GIDjk1lUFKhlnzJuEUrKjBcv1eT3kaY8=";
21 nativeBuildInputs = [ makeBinaryWrapper ];
25 install -Dm755 maxfetch $out/bin/maxfetch
26 wrapProgram $out/bin/maxfetch \
27 --prefix PATH : ${lib.makeBinPath [ gnused ncurses procps ]}
32 description = "Nice fetching program written in sh";
33 homepage = "https://github.com/jobcmax/maxfetch";
34 license = licenses.gpl2Plus;
35 mainProgram = "maxfetch";
36 maintainers = with maintainers; [ jtbx ];
37 platforms = platforms.unix;