mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 15:15:36 +00:00
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
61 lines
1.1 KiB
Nix
61 lines
1.1 KiB
Nix
{ lib, stdenv
|
|
, gettext
|
|
, fetchurl
|
|
, pkgconfig
|
|
, gtk3
|
|
, glib
|
|
, meson
|
|
, ninja
|
|
, upower
|
|
, python3
|
|
, desktop-file-utils
|
|
, wrapGAppsHook
|
|
, gnome3 }:
|
|
|
|
let
|
|
pname = "gnome-power-manager";
|
|
version = "3.32.0";
|
|
in stdenv.mkDerivation rec {
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
|
sha256 = "0drfn3wcc8l4n07qwv6p0rw2dwcd00hwzda282q62l6sasks2b2g";
|
|
};
|
|
|
|
passthru = {
|
|
updateScript = gnome3.updateScript {
|
|
packageName = pname;
|
|
attrPath = "gnome3.${pname}";
|
|
};
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkgconfig
|
|
wrapGAppsHook
|
|
gettext
|
|
|
|
# needed by meson_post_install.sh
|
|
python3
|
|
glib.dev
|
|
desktop-file-utils
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk3
|
|
glib
|
|
upower
|
|
gnome3.adwaita-icon-theme
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://projects-old.gnome.org/gnome-power-manager/";
|
|
description = "View battery and power statistics provided by UPower";
|
|
maintainers = teams.gnome.members;
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|