mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
105 lines
2.2 KiB
Nix
105 lines
2.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, glib
|
|
, glib-networking
|
|
, gettext
|
|
, cinnamon-desktop
|
|
, gtk3
|
|
, libnotify
|
|
, libxml2
|
|
, colord
|
|
, polkit
|
|
, libxkbfile
|
|
, cinnamon-menus
|
|
, libgnomekbd
|
|
, libxklavier
|
|
, networkmanager
|
|
, libgudev
|
|
, libwacom
|
|
, wrapGAppsHook3
|
|
, tzdata
|
|
, glibc
|
|
, libnma
|
|
, modemmanager
|
|
, xorg
|
|
, gdk-pixbuf
|
|
, meson
|
|
, ninja
|
|
, cinnamon-translations
|
|
, python3
|
|
, upower
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "cinnamon-control-center";
|
|
version = "6.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "linuxmint";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-Blod69RzPTE3DztRo0PK0MKCE+vq0HWrcJcC/1e8eRI=";
|
|
};
|
|
|
|
buildInputs = [
|
|
gtk3
|
|
glib
|
|
glib-networking
|
|
cinnamon-desktop
|
|
libnotify
|
|
cinnamon-menus
|
|
libxml2
|
|
polkit
|
|
libgnomekbd
|
|
libxklavier
|
|
colord
|
|
libgudev
|
|
libwacom
|
|
tzdata
|
|
networkmanager
|
|
libnma
|
|
modemmanager
|
|
xorg.libXxf86misc
|
|
xorg.libxkbfile
|
|
gdk-pixbuf
|
|
upower
|
|
];
|
|
|
|
/* ./panels/datetime/test-timezone.c:4:#define TZ_DIR "/usr/share/zoneinfo/"
|
|
./panels/datetime/tz.h:32:# define TZ_DATA_FILE "/usr/share/zoneinfo/zone.tab"
|
|
./panels/datetime/tz.h:34:# define TZ_DATA_FILE "/usr/share/lib/zoneinfo/tab/zone_sun.tab" */
|
|
|
|
postPatch = ''
|
|
sed 's|TZ_DIR "/usr/share/zoneinfo/"|TZ_DIR "${tzdata}/share/zoneinfo/"|g' -i ./panels/datetime/test-timezone.c
|
|
sed 's|TZ_DATA_FILE "/usr/share/zoneinfo/zone.tab"|TZ_DATA_FILE "${tzdata}/share/zoneinfo/zone.tab"|g' -i ./panels/datetime/tz.h
|
|
sed 's|"/usr/share/i18n/locales/"|"${glibc}/share/i18n/locales/"|g' -i panels/datetime/test-endianess.c
|
|
|
|
patchShebangs meson_install_schemas.py
|
|
'';
|
|
|
|
mesonFlags = [
|
|
# use locales from cinnamon-translations
|
|
"--localedir=${cinnamon-translations}/share/locale"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
meson
|
|
ninja
|
|
wrapGAppsHook3
|
|
gettext
|
|
python3
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/linuxmint/cinnamon-control-center";
|
|
description = "Collection of configuration plugins used in cinnamon-settings";
|
|
mainProgram = "cinnamon-control-center";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = teams.cinnamon.members;
|
|
};
|
|
}
|