depot/third_party/nixpkgs/pkgs/tools/misc/bfetch/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

30 lines
746 B
Nix

{ lib, stdenvNoCC, fetchFromGitHub, bash }:
stdenvNoCC.mkDerivation rec {
pname = "bfetch";
version = "unstable-2021-05-21";
src = fetchFromGitHub {
owner = "NNBnh";
repo = pname;
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";
};
}