about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/misc/dwmbar/default.nix
blob: 0d942eff73d7acda698bccd0ab6a35c8e7d968fa (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
30
31
32
33
34
35
36
37
38
{ stdenv
, lib
, fetchFromGitHub
}:

stdenv.mkDerivation {
  pname = "dwmbar";
  version = "unstable-2021-12-22";

  src = fetchFromGitHub {
    owner = "thytom";
    repo = "dwmbar";
    rev = "574f5703c558a56bc9c354471543511255423dc7";
    sha256 = "sha256-IrelZpgsxq2dnsjMdh7VC5eKffEGRbDkZmZBD+tROPs=";
  };

  postPatch = ''
    substituteInPlace dwmbar \
      --replace 'DEFAULT_CONFIG_DIR="/usr/share/dwmbar"' "DEFAULT_CONFIG_DIR=\"$out/share/dwmbar\""
  '';

  installPhase = ''
    install -d $out/share/dwmbar
    cp -r modules $out/share/dwmbar/
    install -D -t $out/share/dwmbar/ config
    install -D -t $out/share/dwmbar/ bar.sh
    install -Dm755 -t $out/bin/ dwmbar
  '';

  meta = with lib; {
    homepage = "https://github.com/thytom/dwmbar";
    description = "A Modular Status Bar for dwm";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ baitinq ];
    platforms = platforms.linux;
    mainProgram = "dwmbar";
  };
}