3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/mate/mate-menus/default.nix
R. RyanTM 85ef610da0 mate.mate-menus: 1.20.0 -> 1.20.1
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/mate-menus/versions.

These checks were done:

- built on NixOS

- 0 of 0 passed binary check by having a zero exit code.
- 0 of 0 passed binary check by having the new version present in output.
- found 1.20.1 with grep in /nix/store/9hfl9953if9wmc6y8zyw5wmx61ngi9lh-mate-menus-1.20.1
- directory tree listing: https://gist.github.com/c04722d4564c89227f336ed797444a78
- du listing: https://gist.github.com/9a8dc65709b3969980df3dc3b8ffcc4b
2018-06-19 06:04:08 -07:00

29 lines
843 B
Nix

{ stdenv, fetchurl, pkgconfig, intltool, glib, gobjectIntrospection, python, mate }:
stdenv.mkDerivation rec {
name = "mate-menus-${version}";
version = "1.20.1";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
sha256 = "1p8pkw6aby2hq2liqrnsf3lvyn2jqamfbs83fv6q7clw5w179sy6";
};
nativeBuildInputs = [ pkgconfig intltool ];
buildInputs = [ glib gobjectIntrospection python ];
makeFlags = [
"INTROSPECTION_GIRDIR=$(out)/share/gir-1.0/"
"INTROSPECTION_TYPELIBDIR=$(out)/lib/girepository-1.0"
];
meta = with stdenv.lib; {
description = "Menu system for MATE";
homepage = https://github.com/mate-desktop/mate-menus;
license = with licenses; [ gpl2 lgpl2 ];
platforms = platforms.unix;
maintainers = [ maintainers.romildo ];
};
}