mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
246b7c4b11
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-desktop/versions. These checks were done: - built on NixOS - Warning: no invocation of /nix/store/dx51na6smf7cpbav7zgb2x5xyyfbpcbp-mate-desktop-1.21.0/bin/mate-color-select had a zero exit code or showed the expected version - /nix/store/dx51na6smf7cpbav7zgb2x5xyyfbpcbp-mate-desktop-1.21.0/bin/mate-about passed the binary check. - Warning: no invocation of /nix/store/dx51na6smf7cpbav7zgb2x5xyyfbpcbp-mate-desktop-1.21.0/bin/.mate-color-select-wrapped had a zero exit code or showed the expected version - /nix/store/dx51na6smf7cpbav7zgb2x5xyyfbpcbp-mate-desktop-1.21.0/bin/.mate-about-wrapped passed the binary check. - 2 of 4 passed binary check by having a zero exit code. - 0 of 4 passed binary check by having the new version present in output. - found 1.21.0 with grep in /nix/store/dx51na6smf7cpbav7zgb2x5xyyfbpcbp-mate-desktop-1.21.0 - directory tree listing: https://gist.github.com/b54e2f1e430d08d273ba8dab30a7f562 - du listing: https://gist.github.com/74e6289b7a86dee591389adc61e024ed
30 lines
725 B
Nix
30 lines
725 B
Nix
{ stdenv, fetchurl, pkgconfig, intltool, gnome3, mate, wrapGAppsHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "mate-desktop-${version}";
|
|
version = "1.21.0";
|
|
|
|
src = fetchurl {
|
|
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
|
|
sha256 = "0qd76p5zqgifiawkgv2casb9ll55j4qq4pfxgxj3j5zvjr3dgr47";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkgconfig
|
|
intltool
|
|
wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
gnome3.dconf
|
|
gnome3.gtk
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Library with common API for various MATE modules";
|
|
homepage = http://mate-desktop.org;
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.romildo ];
|
|
};
|
|
}
|