2020-01-20 19:19:15 +01:00
|
|
|
{ fetchFromGitHub
|
|
|
|
, glib
|
|
|
|
, gobject-introspection
|
|
|
|
, meson
|
|
|
|
, ninja
|
2021-01-17 03:21:50 +01:00
|
|
|
, pkg-config
|
2021-01-11 08:54:33 +01:00
|
|
|
, lib, stdenv
|
2020-01-20 19:19:15 +01:00
|
|
|
, wrapGAppsHook
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "cinnamon-menus";
|
2021-02-06 14:43:17 +01:00
|
|
|
version = "4.8.2";
|
2020-01-20 19:19:15 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "linuxmint";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2021-02-08 12:50:38 +01:00
|
|
|
hash = "sha256-9VSrqCjC8U3js1gqjl5QFctWYECATxN+AdfMdHLxYUY=";
|
2020-01-20 19:19:15 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
glib
|
|
|
|
gobject-introspection
|
|
|
|
];
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
meson
|
|
|
|
ninja
|
|
|
|
wrapGAppsHook
|
2021-01-17 03:21:50 +01:00
|
|
|
pkg-config
|
2020-01-20 19:19:15 +01:00
|
|
|
];
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-01-20 19:19:15 +01:00
|
|
|
homepage = "https://github.com/linuxmint/cinnamon-menus";
|
|
|
|
description = "A menu system for the Cinnamon project";
|
2020-01-22 11:08:15 +01:00
|
|
|
license = [ licenses.gpl2 licenses.lgpl2 ];
|
2020-01-20 19:19:15 +01:00
|
|
|
platforms = platforms.linux;
|
2020-09-06 00:40:47 +02:00
|
|
|
maintainers = teams.cinnamon.members;
|
2020-01-20 19:19:15 +01:00
|
|
|
};
|
|
|
|
}
|