nerdfonts: fix wrong attribute name in error message (#364463)
[NixPkgs.git] / pkgs / by-name / po / powersupply / package.nix
blobd20287e3e41b608cd502f2fb5467be8fa18b0ac6
2   lib,
3   python3,
4   fetchFromGitLab,
5   desktop-file-utils,
6   gobject-introspection,
7   gtk3,
8   libhandy,
9   meson,
10   ninja,
11   pkg-config,
12   wrapGAppsHook3,
15 python3.pkgs.buildPythonApplication rec {
16   pname = "powersupply";
17   version = "0.9.0";
19   format = "other";
21   src = fetchFromGitLab {
22     owner = "martijnbraam";
23     repo = "powersupply";
24     rev = version;
25     hash = "sha256-3NXoOqveMlMezYe4C78F3764KeAy5Sz3M714PO3h/eI=";
26   };
28   nativeBuildInputs = [
29     desktop-file-utils
30     gtk3
31     gobject-introspection
32     meson
33     ninja
34     pkg-config
35     wrapGAppsHook3
36   ];
38   buildInputs = [
39     gtk3
40     libhandy
41   ];
43   propagatedBuildInputs = with python3.pkgs; [
44     pygobject3
45   ];
47   dontWrapGApps = true;
49   preFixup = ''
50     makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
51   '';
53   strictDeps = true;
55   meta = with lib; {
56     description = "Graphical app to display power status of mobile Linux platforms";
57     homepage = "https://gitlab.com/MartijnBraam/powersupply";
58     license = licenses.mit;
59     mainProgram = "powersupply";
60     platforms = platforms.linux;
61     maintainers = with maintainers; [ Luflosi ];
62   };