forked from mirrors/nixpkgs
mate-common: init at 1.14.1
This commit is contained in:
parent
e7c9684217
commit
5c221d0b00
4
pkgs/desktops/mate/default.nix
Normal file
4
pkgs/desktops/mate/default.nix
Normal file
|
@ -0,0 +1,4 @@
|
|||
{ callPackage, pkgs }:
|
||||
rec {
|
||||
mate-common = callPackage ./mate-common { };
|
||||
}
|
21
pkgs/desktops/mate/mate-common/default.nix
Normal file
21
pkgs/desktops/mate/mate-common/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "mate-common-${version}";
|
||||
version = "${major-ver}.${minor-ver}";
|
||||
major-ver = "1.14";
|
||||
minor-ver = "0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
|
||||
sha256 = "1xkcwn3w6vrgnkcw7mcvihrsqclpkbqqxs1ivj4cq0dkqrm1kdq4";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "Common files for development of MATE packages";
|
||||
homepage = "http://mate-desktop.org";
|
||||
license = stdenv.lib.licenses.gpl3;
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
maintainers = [ stdenv.lib.maintainers.romildo ];
|
||||
};
|
||||
}
|
|
@ -15730,6 +15730,10 @@ in
|
|||
|
||||
in makeOverridable makePackages extra;
|
||||
|
||||
mate = recurseIntoAttrs (callPackage ../desktops/mate {
|
||||
callPackage = newScope pkgs.mate;
|
||||
});
|
||||
|
||||
pantheon = recurseIntoAttrs rec {
|
||||
callPackage = newScope pkgs.pantheon;
|
||||
pantheon-terminal = callPackage ../desktops/pantheon/apps/pantheon-terminal { };
|
||||
|
|
Loading…
Reference in a new issue