summary refs log tree commit diff
path: root/pkgs/tools/misc/bfetch/default.nix
blob: 107f2cd9452851fffaf8675473cac8721c8f2624 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ 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 = "A SuperB general-purpose fetch displayer written in portable sh";
    homepage = "https://github.com/NNBnh/bfetch";
    license = licenses.gpl3Only;
    platforms = platforms.all;
    maintainers = with maintainers; [ fortuneteller2k ];
  };
}