mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 05:13:04 +00:00
8925cb5238
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. This update was made based on information from https://repology.org/metapackage/mate-desktop/versions. These checks were done: - built on NixOS - ran `/nix/store/1pkc0ykfrmr39ah5av4bb1nzyb5vx0vg-mate-desktop-1.20.1/bin/mate-about -h` got 0 exit code - ran `/nix/store/1pkc0ykfrmr39ah5av4bb1nzyb5vx0vg-mate-desktop-1.20.1/bin/mate-about --help` got 0 exit code - ran `/nix/store/1pkc0ykfrmr39ah5av4bb1nzyb5vx0vg-mate-desktop-1.20.1/bin/.mate-about-wrapped -h` got 0 exit code - ran `/nix/store/1pkc0ykfrmr39ah5av4bb1nzyb5vx0vg-mate-desktop-1.20.1/bin/.mate-about-wrapped --help` got 0 exit code - found 1.20.1 with grep in /nix/store/1pkc0ykfrmr39ah5av4bb1nzyb5vx0vg-mate-desktop-1.20.1 - directory tree listing: https://gist.github.com/d509aa61ab7b795e96d46f3e0e3d3e38
31 lines
725 B
Nix
31 lines
725 B
Nix
{ stdenv, fetchurl, pkgconfig, intltool, gnome3, mate, wrapGAppsHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "mate-desktop-${version}";
|
|
version = "1.20.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
|
|
sha256 = "0jxhhf9w6mz8ha6ymgj2alzmiydylg4ngqslkjxx37vvpvms2dyx";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|