He afegit la traducció del kde al català.
Adding the kde Catalan localisation. svn path=/nixpkgs/trunk/; revision=17623
This commit is contained in:
parent
e5654ae80f
commit
d0157e7b45
|
@ -258,4 +258,12 @@ rec {
|
|||
inherit kdelibs;
|
||||
inherit automoc4 phonon;
|
||||
};
|
||||
|
||||
### LOCALIZATION
|
||||
|
||||
l10n_ca = import ./l10n/catalan.nix {
|
||||
inherit (pkgs) stdenv fetchurl lib cmake qt4 perl gettext;
|
||||
inherit kdelibs;
|
||||
inherit automoc4 phonon;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -0,0 +1,17 @@
|
|||
{stdenv, fetchurl, lib, cmake, qt4, perl, gettext, kdelibs, automoc4, phonon}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "kde-l10n-ca-4.3.1";
|
||||
src = fetchurl {
|
||||
url = mirror://kde/stable/4.3.1/src/kde-l10n/kde-l10n-ca-4.3.1.tar.bz2;
|
||||
sha256 = "1jvsl9gv9ksijfp1pfsvhnb7yjl7cdnvg9vzmz18a9r4wbah6w5m";
|
||||
};
|
||||
includeAllQtDirs=true;
|
||||
buildInputs = [ cmake qt4 perl gettext kdelibs automoc4 phonon ];
|
||||
cmakeFlagsArray = [ "-DGETTEXT_INCLUDE_DIR=${gettext}/include" ];
|
||||
meta = {
|
||||
description = "KDE l10n for Catalan";
|
||||
license = "GPL";
|
||||
homepage = http://www.kde.org;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue