d2f065b793
Provides an app to view battery and power statistics. This app is badly documented on the web, but is in the default Fedora install; hence to motivation to add it to Nix.
48 lines
830 B
Nix
48 lines
830 B
Nix
{ stdenv
|
|
, intltool
|
|
, fetchurl
|
|
, pkgconfig
|
|
, gtk3
|
|
, glib
|
|
, meson
|
|
, ninja
|
|
, upower
|
|
, desktop_file_utils
|
|
, wrapGAppsHook
|
|
, gnome3 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
inherit (import ./src.nix fetchurl) name src;
|
|
|
|
propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ];
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkgconfig
|
|
wrapGAppsHook
|
|
intltool
|
|
|
|
# needed by meson_post_install.sh
|
|
glib.dev
|
|
desktop_file_utils
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk3
|
|
glib
|
|
upower
|
|
gnome3.defaultIconTheme
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://projects.gnome.org/gnome-power-manager/;
|
|
description = "View battery and power statistics provided by UPower";
|
|
maintainers = gnome3.maintainers;
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|