2020-01-20 01:02:20 +00:00
|
|
|
{ fetchFromGitHub
|
|
|
|
, gdk-pixbuf
|
|
|
|
, gobject-introspection
|
|
|
|
, gtk3
|
|
|
|
, intltool
|
|
|
|
, meson
|
|
|
|
, ninja
|
|
|
|
, pkgconfig
|
|
|
|
, pulseaudio
|
|
|
|
, python3
|
|
|
|
, stdenv
|
|
|
|
, xkeyboard_config
|
|
|
|
, xorg
|
|
|
|
, wrapGAppsHook
|
|
|
|
, glib
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "cinnamon-desktop";
|
2020-06-15 16:07:49 +00:00
|
|
|
version = "4.6.1";
|
2020-01-20 01:02:20 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "linuxmint";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2020-06-15 16:07:49 +00:00
|
|
|
sha256 = "0299m41vy4kcsi74z793ligvqj8nyy3fbzh6xz89jd8l3p9kgrz8";
|
2020-01-20 01:02:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
glib
|
|
|
|
gtk3
|
|
|
|
pulseaudio
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
gdk-pixbuf
|
|
|
|
xkeyboard_config
|
|
|
|
xorg.libxkbfile
|
|
|
|
xorg.libXext
|
|
|
|
xorg.libXrandr
|
|
|
|
gobject-introspection
|
|
|
|
];
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
meson
|
|
|
|
ninja
|
|
|
|
python3
|
|
|
|
wrapGAppsHook
|
|
|
|
intltool
|
|
|
|
pkgconfig
|
|
|
|
];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
chmod +x install-scripts/meson_install_schemas.py # patchShebangs requires executable file
|
|
|
|
patchShebangs install-scripts/meson_install_schemas.py
|
|
|
|
sed "s|/usr/share|/run/current-system/sw/share|g" -i ./schemas/* # NOTE: unless this causes a circular dependency, we could link it to cinnamon-common/share/cinnamon
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = "https://github.com/linuxmint/cinnamon-desktop";
|
|
|
|
description = "Library and data for various Cinnamon modules";
|
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
The libcinnamon-desktop library provides API shared by several applications
|
|
|
|
on the desktop, but that cannot live in the platform for various
|
|
|
|
reasons. There is no API or ABI guarantee, although we are doing our
|
|
|
|
best to provide stability. Documentation for the API is available with
|
|
|
|
gtk-doc.
|
|
|
|
'';
|
|
|
|
|
2020-01-22 10:08:15 +00:00
|
|
|
license = [ licenses.gpl2 licenses.lgpl2 ];
|
2020-01-20 01:02:20 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.mkg20001 ];
|
|
|
|
};
|
|
|
|
}
|