nixpkgs/pkgs/desktops/mate/mate-menus/default.nix
R. RyanTM 33413ba38a mate.mate-menus: 1.20.1 -> 1.21.0 (#43183)
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.21.0 with grep in /nix/store/3q42pbw9k7jimz7bjskcavl6lic263m5-mate-menus-1.21.0
- directory tree listing: https://gist.github.com/abc03dc52627bfc19e82224f6f78572a
- du listing: https://gist.github.com/45f9a8095638ecb7723fa12bab366074
2018-07-14 20:48:32 +02:00

28 lines
843 B
Nix

{ stdenv, fetchurl, pkgconfig, intltool, glib, gobjectIntrospection, python, mate }:
stdenv.mkDerivation rec {
name = "mate-menus-${version}";
version = "1.21.0";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
sha256 = "168f7jgm4kbnx92xh3iqvvrgpkv1q862xg27zxg40nkz5xhk95hx";
};
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 ];
};
}