marco: init at 1.18.1
This commit is contained in:
parent
7e151599f4
commit
5bbe177b3f
@ -13,6 +13,7 @@ rec {
|
|||||||
libmatekbd = callPackage ./libmatekbd { };
|
libmatekbd = callPackage ./libmatekbd { };
|
||||||
libmatemixer = callPackage ./libmatemixer { };
|
libmatemixer = callPackage ./libmatemixer { };
|
||||||
libmateweather = callPackage ./libmateweather { };
|
libmateweather = callPackage ./libmateweather { };
|
||||||
|
marco = callPackage ./marco { };
|
||||||
mate-common = callPackage ./mate-common { };
|
mate-common = callPackage ./mate-common { };
|
||||||
mate-desktop = callPackage ./mate-desktop { };
|
mate-desktop = callPackage ./mate-desktop { };
|
||||||
mate-icon-theme = callPackage ./mate-icon-theme { };
|
mate-icon-theme = callPackage ./mate-icon-theme { };
|
||||||
@ -27,6 +28,7 @@ rec {
|
|||||||
libmatekbd
|
libmatekbd
|
||||||
libmatemixer
|
libmatemixer
|
||||||
libmateweather
|
libmateweather
|
||||||
|
marco
|
||||||
mate-common
|
mate-common
|
||||||
mate-desktop
|
mate-desktop
|
||||||
mate-icon-theme
|
mate-icon-theme
|
||||||
|
37
pkgs/desktops/mate/marco/default.nix
Normal file
37
pkgs/desktops/mate/marco/default.nix
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
{ stdenv, fetchurl, pkgconfig, intltool, itstool, libxml2, libcanberra_gtk3, libgtop, gnome2, gnome3, wrapGAppsHook }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "marco-${version}";
|
||||||
|
version = "${major-ver}.${minor-ver}";
|
||||||
|
major-ver = "1.18";
|
||||||
|
minor-ver = "1";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
|
||||||
|
sha256 = "0lwbp9wyd66hl5d7g272l8g3k1pb9s4s2p9fb04750a58w87d8k5";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
pkgconfig
|
||||||
|
intltool
|
||||||
|
itstool
|
||||||
|
wrapGAppsHook
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
libxml2
|
||||||
|
libcanberra_gtk3
|
||||||
|
libgtop
|
||||||
|
gnome2.startup_notification
|
||||||
|
gnome3.gtk
|
||||||
|
gnome3.zenity
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "MATE default window manager";
|
||||||
|
homepage = https://github.com/mate-desktop/marco;
|
||||||
|
license = [ licenses.gpl2 ];
|
||||||
|
platforms = platforms.unix;
|
||||||
|
maintainers = [ maintainers.romildo ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user