summaryrefslogtreecommitdiffstats
path: root/pkgs/by-name/bf/bfetch/package.nix
blob: c8e8ee8c873e9f84933285455148a0c8bfa1ceea (plain)
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
30
31
32
33
34
35
{
  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";
  };
}