Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
36 lines
754 B
Nix
36 lines
754 B
Nix
{
|
|
lib,
|
|
stdenvNoCC,
|
|
fetchFromGitHub,
|
|
bash,
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation {
|
|
pname = "bfetch";
|
|
version = "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 = with lib; {
|
|
description = "SuperB general-purpose fetch displayer written in portable sh";
|
|
homepage = "https://github.com/NNBnh/bfetch";
|
|
license = licenses.gpl3Only;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ moni ];
|
|
mainProgram = "bfetch";
|
|
};
|
|
}
|