mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
d6974a11b2
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
47 lines
1.1 KiB
Nix
47 lines
1.1 KiB
Nix
{ stdenv, fetchurl, pkgconfig, intltool, itstool, glib, dbus-glib, libwnck3, librsvg, libxml2, gnome3, mate, hicolor-icon-theme, wrapGAppsHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "mate-panel-${version}";
|
|
version = "1.21.0";
|
|
|
|
src = fetchurl {
|
|
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
|
|
sha256 = "0vn523jscmxhyv80fmrnvk1wmyp4kdzr4g7yypqnsg4kg2gmr7x0";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkgconfig
|
|
intltool
|
|
itstool
|
|
wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
glib
|
|
dbus-glib
|
|
libwnck3
|
|
librsvg
|
|
libxml2
|
|
gnome3.gtk
|
|
gnome3.dconf
|
|
mate.libmateweather
|
|
mate.mate-desktop
|
|
mate.mate-menus
|
|
hicolor-icon-theme
|
|
];
|
|
|
|
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 ];
|
|
};
|
|
}
|