nixpkgs/pkgs/desktops/mate/mate-panel/default.nix

48 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, intltool, itstool, glib, dbus-glib, libwnck3, librsvg, libxml2, gnome3, mate, hicolor-icon-theme, wrapGAppsHook }:
2017-08-31 03:08:40 +00:00
stdenv.mkDerivation rec {
name = "mate-panel-${version}";
mate.mate-panel: 1.20.1 -> 1.21.0 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-panel/versions. These checks were done: - built on NixOS - ran ‘/nix/store/2hb3j91z25jra21whapq7cpwsr7m4fj1-mate-panel-1.21.0/bin/mate-desktop-item-edit -h’ got 0 exit code - ran ‘/nix/store/2hb3j91z25jra21whapq7cpwsr7m4fj1-mate-panel-1.21.0/bin/mate-desktop-item-edit --help’ got 0 exit code - ran ‘/nix/store/2hb3j91z25jra21whapq7cpwsr7m4fj1-mate-panel-1.21.0/bin/mate-panel-test-applets -h’ got 0 exit code - ran ‘/nix/store/2hb3j91z25jra21whapq7cpwsr7m4fj1-mate-panel-1.21.0/bin/mate-panel-test-applets --help’ got 0 exit code - ran ‘/nix/store/2hb3j91z25jra21whapq7cpwsr7m4fj1-mate-panel-1.21.0/bin/.mate-desktop-item-edit-wrapped -h’ got 0 exit code - ran ‘/nix/store/2hb3j91z25jra21whapq7cpwsr7m4fj1-mate-panel-1.21.0/bin/.mate-desktop-item-edit-wrapped --help’ got 0 exit code - ran ‘/nix/store/2hb3j91z25jra21whapq7cpwsr7m4fj1-mate-panel-1.21.0/bin/.mate-panel-test-applets-wrapped -h’ got 0 exit code - ran ‘/nix/store/2hb3j91z25jra21whapq7cpwsr7m4fj1-mate-panel-1.21.0/bin/.mate-panel-test-applets-wrapped --help’ got 0 exit code - found 1.21.0 with grep in /nix/store/2hb3j91z25jra21whapq7cpwsr7m4fj1-mate-panel-1.21.0 - directory tree listing: https://gist.github.com/ea7810820311098527d7248a349b1657 - du listing: https://gist.github.com/967206660f695b80197cc7440dee23d5
2018-05-14 07:58:38 +00:00
version = "1.21.0";
2017-08-31 03:08:40 +00:00
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
mate.mate-panel: 1.20.1 -> 1.21.0 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-panel/versions. These checks were done: - built on NixOS - ran ‘/nix/store/2hb3j91z25jra21whapq7cpwsr7m4fj1-mate-panel-1.21.0/bin/mate-desktop-item-edit -h’ got 0 exit code - ran ‘/nix/store/2hb3j91z25jra21whapq7cpwsr7m4fj1-mate-panel-1.21.0/bin/mate-desktop-item-edit --help’ got 0 exit code - ran ‘/nix/store/2hb3j91z25jra21whapq7cpwsr7m4fj1-mate-panel-1.21.0/bin/mate-panel-test-applets -h’ got 0 exit code - ran ‘/nix/store/2hb3j91z25jra21whapq7cpwsr7m4fj1-mate-panel-1.21.0/bin/mate-panel-test-applets --help’ got 0 exit code - ran ‘/nix/store/2hb3j91z25jra21whapq7cpwsr7m4fj1-mate-panel-1.21.0/bin/.mate-desktop-item-edit-wrapped -h’ got 0 exit code - ran ‘/nix/store/2hb3j91z25jra21whapq7cpwsr7m4fj1-mate-panel-1.21.0/bin/.mate-desktop-item-edit-wrapped --help’ got 0 exit code - ran ‘/nix/store/2hb3j91z25jra21whapq7cpwsr7m4fj1-mate-panel-1.21.0/bin/.mate-panel-test-applets-wrapped -h’ got 0 exit code - ran ‘/nix/store/2hb3j91z25jra21whapq7cpwsr7m4fj1-mate-panel-1.21.0/bin/.mate-panel-test-applets-wrapped --help’ got 0 exit code - found 1.21.0 with grep in /nix/store/2hb3j91z25jra21whapq7cpwsr7m4fj1-mate-panel-1.21.0 - directory tree listing: https://gist.github.com/ea7810820311098527d7248a349b1657 - du listing: https://gist.github.com/967206660f695b80197cc7440dee23d5
2018-05-14 07:58:38 +00:00
sha256 = "0vn523jscmxhyv80fmrnvk1wmyp4kdzr4g7yypqnsg4kg2gmr7x0";
2017-08-31 03:08:40 +00:00
};
nativeBuildInputs = [
pkgconfig
intltool
itstool
wrapGAppsHook
];
buildInputs = [
glib
dbus-glib
2017-08-31 03:08:40 +00:00
libwnck3
librsvg
libxml2
gnome3.gtk
gnome3.dconf
mate.libmateweather
mate.mate-desktop
mate.mate-menus
hicolor-icon-theme
2017-08-31 03:08:40 +00:00
];
NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
makeFlags = [
"INTROSPECTION_GIRDIR=$(out)/share/gir-1.0/"
"INTROSPECTION_TYPELIBDIR=$(out)/lib/girepository-1.0"
];
meta = with stdenv.lib; {
description = "The MATE panel";
homepage = https://github.com/mate-desktop/mate-panel;
license = with licenses; [ gpl2 lgpl2 ];
platforms = platforms.unix;
maintainers = [ maintainers.romildo ];
};
}