lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 18.09-beta 35 lines 868 B view raw
1{ stdenv, fetchurl, pkgconfig, intltool, itstool, gtk3, libxml2, libgtop, libcanberra-gtk3, mate, hicolor-icon-theme, wrapGAppsHook }: 2 3stdenv.mkDerivation rec { 4 name = "mate-utils-${version}"; 5 version = "1.21.0"; 6 7 src = fetchurl { 8 url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz"; 9 sha256 = "0q05zzxgwwk7af05yzcjixjd8hi8cqykirj43g60ikhzym009n4q"; 10 }; 11 12 nativeBuildInputs = [ 13 pkgconfig 14 intltool 15 itstool 16 wrapGAppsHook 17 ]; 18 19 buildInputs = [ 20 gtk3 21 libgtop 22 libcanberra-gtk3 23 libxml2 24 mate.mate-panel 25 hicolor-icon-theme 26 ]; 27 28 meta = with stdenv.lib; { 29 description = "Utilities for the MATE desktop"; 30 homepage = http://mate-desktop.org; 31 license = with licenses; [ gpl2Plus lgpl2Plus ]; 32 platforms = platforms.unix; 33 maintainers = [ maintainers.romildo ]; 34 }; 35}