nixpkgs/pkgs/desktops/cinnamon/cinnamon-menus/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
764 B
Nix
Raw Normal View History

2020-01-20 18:19:15 +00:00
{ fetchFromGitHub
, glib
, gobject-introspection
, meson
, ninja
2021-01-17 02:21:50 +00:00
, pkg-config
2021-11-29 16:34:50 +00:00
, lib
, stdenv
2020-01-20 18:19:15 +00:00
, wrapGAppsHook
}:
stdenv.mkDerivation rec {
pname = "cinnamon-menus";
version = "6.0.0";
2020-01-20 18:19:15 +00:00
src = fetchFromGitHub {
owner = "linuxmint";
repo = pname;
rev = version;
hash = "sha256-zP1jA5Fwxh6QrM5YwJo7SFPWaxkJsv1D84dhIDP5xuI=";
2020-01-20 18:19:15 +00:00
};
buildInputs = [
glib
];
nativeBuildInputs = [
meson
ninja
wrapGAppsHook
2021-01-17 02:21:50 +00:00
pkg-config
gobject-introspection
2020-01-20 18:19:15 +00:00
];
meta = with lib; {
2020-01-20 18:19:15 +00:00
homepage = "https://github.com/linuxmint/cinnamon-menus";
description = "A menu system for the Cinnamon project";
license = [ licenses.gpl2 licenses.lgpl2 ];
2020-01-20 18:19:15 +00:00
platforms = platforms.linux;
maintainers = teams.cinnamon.members;
2020-01-20 18:19:15 +00:00
};
}