1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 23:20:55 +00:00
nixpkgs/pkgs/desktops/mate/mate-menus/default.nix

31 lines
883 B
Nix
Raw Normal View History

2017-08-31 03:59:38 +01:00
{ stdenv, fetchurl, pkgconfig, intltool, glib, gobjectIntrospection, python }:
stdenv.mkDerivation rec {
name = "mate-menus-${version}";
version = "${major-ver}.${minor-ver}";
major-ver = "1.18";
2017-12-24 01:57:54 +00:00
minor-ver = "1";
2017-08-31 03:59:38 +01:00
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
2017-12-24 01:57:54 +00:00
sha256 = "03fwv0fvg073dmdbrcbpwjhxpj98aqna804m9nqybhvj3cfyhaz6";
2017-08-31 03:59:38 +01:00
};
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 ];
};
}