mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
marco: init at 1.18.1
This commit is contained in:
parent
7e151599f4
commit
5bbe177b3f
@ -13,6 +13,7 @@ rec {
|
||||
libmatekbd = callPackage ./libmatekbd { };
|
||||
libmatemixer = callPackage ./libmatemixer { };
|
||||
libmateweather = callPackage ./libmateweather { };
|
||||
marco = callPackage ./marco { };
|
||||
mate-common = callPackage ./mate-common { };
|
||||
mate-desktop = callPackage ./mate-desktop { };
|
||||
mate-icon-theme = callPackage ./mate-icon-theme { };
|
||||
@ -27,6 +28,7 @@ rec {
|
||||
libmatekbd
|
||||
libmatemixer
|
||||
libmateweather
|
||||
marco
|
||||
mate-common
|
||||
mate-desktop
|
||||
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…
Reference in New Issue
Block a user