Files
2026-07-18 19:42:50 +00:00

36 lines
762 B
Nix

{
lib,
stdenvNoCC,
fetchFromGitHub,
bash,
}:
stdenvNoCC.mkDerivation {
pname = "bfetch";
version = "1.0.1-unstable-2021-05-21";
src = fetchFromGitHub {
owner = "NNBnh";
repo = "bfetch";
rev = "ef88e9d3f815e5074efc8ef4b7f32be6818130f2";
sha256 = "sha256-jS9zI8b+z3KbI+LeHFwIMJfEmAKSzO8HRZ2rk35hJCk=";
};
buildInputs = [ bash ];
postPatch = ''
patchShebangs --host bin/bfetch
'';
makeFlags = [ "PREFIX=$(out)" ];
meta = {
description = "SuperB general-purpose fetch displayer written in portable sh";
homepage = "https://github.com/NNBnh/bfetch";
license = lib.licenses.gpl3Only;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ moni ];
mainProgram = "bfetch";
};
}