mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
83 lines
1.5 KiB
Nix
83 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
gettext,
|
|
itstool,
|
|
libxml2,
|
|
pkg-config,
|
|
gnome-panel,
|
|
gtk3,
|
|
glib,
|
|
libwnck,
|
|
libgtop,
|
|
libnotify,
|
|
upower,
|
|
wirelesstools,
|
|
linuxPackages,
|
|
adwaita-icon-theme,
|
|
libgweather,
|
|
gucharmap,
|
|
tracker,
|
|
polkit,
|
|
gnome,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "gnome-applets";
|
|
version = "3.52.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/gnome-applets/${lib.versions.majorMinor finalAttrs.version}/gnome-applets-${finalAttrs.version}.tar.xz";
|
|
hash = "sha256-bz07QoZW/21bHT7lzLfs49Kxi1S/BFes9DtxHlXi1iw=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
gettext
|
|
itstool
|
|
pkg-config
|
|
libxml2
|
|
];
|
|
|
|
buildInputs = [
|
|
gnome-panel
|
|
gtk3
|
|
glib
|
|
libxml2
|
|
libwnck
|
|
libgtop
|
|
libnotify
|
|
upower
|
|
adwaita-icon-theme
|
|
libgweather
|
|
gucharmap
|
|
tracker
|
|
polkit
|
|
wirelesstools
|
|
linuxPackages.cpupower
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
doCheck = true;
|
|
|
|
# Don't try to install modules to gnome panel's directory, as it's read only
|
|
PKG_CONFIG_LIBGNOME_PANEL_MODULESDIR = "${placeholder "out"}/lib/gnome-panel/modules";
|
|
|
|
passthru = {
|
|
updateScript = gnome.updateScript {
|
|
packageName = "gnome-applets";
|
|
versionPolicy = "odd-unstable";
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Applets for use with the GNOME panel";
|
|
mainProgram = "cpufreq-selector";
|
|
homepage = "https://gitlab.gnome.org/GNOME/gnome-applets";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = teams.gnome.members;
|
|
platforms = platforms.linux;
|
|
};
|
|
})
|