summaryrefslogtreecommitdiff
path: root/pkgs/fastfetch.nix
blob: 09f4aeaf715092669ddd583b2b4e04885b0403f1 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
  lib,
  stdenv,
  fetchFromGitHub,
  cmake,
  ninja,
  pkg-config,
  chafa,
  cjson,
  dbus,
  dconf,
  glib,
  imagemagick,
  libGL,
  libnma,
  libpulseaudio,
  mesa,
  ocl-icd,
  opencl-headers,
  pciutils,
  vulkan-headers,
  wayland,
  xfce,
  xorg,
  zlib,
}:
stdenv.mkDerivation rec {
  pname = "fastfetch";
  version = "1.12.2";

  src = fetchFromGitHub {
    owner = "fastfetch-cli";
    repo = pname;
    rev = version;
    sha256 = "sha256-l9fIm7+dBsOqGoFUYtpYESAjDy3496rDTUDQjbNU4U0=";
  };

  cmakeFlags = ["-DCMAKE_INSTALL_SYSCONFDIR='etc'"];

  buildInputs = [
    chafa
    cjson
    dbus
    dconf
    glib
    imagemagick
    libnma
    libpulseaudio
    libGL
    mesa
    ocl-icd
    pciutils
    xfce.xfconf
    xorg.xrandr
    zlib
  ];

  nativeBuildInputs = [
    cmake
    ninja
    pkg-config
    opencl-headers
    vulkan-headers
    xorg.libxcb
    xorg.libXrandr
    wayland
  ];

  postInstall = ''
    rm -rf $out/etc
  '';

  meta = with lib; {
    homepage = "https://github.com/fastfetch-cli/fastfetch";
    description = "Like neofetch, but much faster because written in C.";
    license = licenses.mit;
    platforms = with platforms; platforms.unix ++ platforms.windows;
    maintainers = with maintainers; [getchoo];
  };
}