aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/desktops/gnome-3/extensions/battery-status/default.nix
blob: c6518201da0187c9cee649b1d75a65f83b7fde53 (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
{ stdenv, fetchFromGitHub }:

stdenv.mkDerivation rec {
  pname = "gnome-shell-extension-battery-status";
  version = "6";

  src = fetchFromGitHub {
    owner = "milliburn";
    repo = "gnome-shell-extension-battery_status";
    rev = "v${version}";
    sha256 = "1w83h863mzffjnmk322xq90qf3y9dzay1w9yw5r0qnbsq1ljl8p4";
  };

  uuid = "battery_status@milliburn.github.com";

  installPhase = ''
    runHook preInstall
    mkdir -p $out/share/gnome-shell/extensions
    cp -r ${uuid} $out/share/gnome-shell/extensions/
    runHook postInstall
  '';

  meta = with stdenv.lib; {
    description = "Configurable lightweight battery charge indicator and autohider";
    license = licenses.gpl2;
    broken = true; # not compatable with latest GNOME
    maintainers = with maintainers; [ jonafato ];
    homepage = "https://github.com/milliburn/gnome-shell-extension-battery_status";
  };
}