KDE 4.11: add branch meta

This commit is contained in:
Evgeny Egorochkin 2014-02-18 03:10:25 +02:00
parent 5174a69400
commit 586188fa7d
3 changed files with 8 additions and 4 deletions

View file

@ -1,9 +1,11 @@
{ callPackage, callPackageOrig, stdenv, qt48, release ? "4.11.5" }:
let
branch = "4.11";
# Need callPackageOrig to avoid infinite cycle
kde = callPackageOrig ./kde-package {
inherit release ignoreList extraSubpkgs callPackage;
inherit release branch ignoreList extraSubpkgs callPackage;
};
# The list of igored individual modules
@ -36,7 +38,7 @@ kde.modules // kde.individual //
full = stdenv.lib.attrValues kde.modules;
l10n = callPackage ./l10n {
inherit release;
inherit release branch;
inherit (kde.manifest) stable;
};
}

View file

@ -1,5 +1,5 @@
{ callPackage, runCommand, stdenv, fetchurl, qt4, cmake, automoc4
, release, ignoreList, extraSubpkgs
, release, branch, ignoreList, extraSubpkgs
}:
let
@ -19,6 +19,7 @@ rec {
# Default meta attribute
defMeta = {
homepage = http://www.kde.org;
inherit branch;
platforms = stdenv.lib.platforms.linux;
inherit (qt4.meta) maintainers;
};

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, kdelibs, gettext, release, stable }:
{ stdenv, fetchurl, kdelibs, gettext, release, branch, stable }:
let
@ -22,6 +22,7 @@ let
meta = {
description = "KDE translation for ${lang}";
inherit branch;
license = "GPL";
platforms = stdenv.lib.platforms.linux;
inherit (kdelibs.meta) maintainers homepage;