smarty3-i18n: Init at 1.0 (#44622)

This commit is contained in:
Janne Heß 2018-08-07 18:26:49 +02:00 committed by xeji
parent 1924e14d2e
commit 25f4a12bc4
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ stdenv, fetchFromGitHub, ... }: stdenv.mkDerivation rec {
name = "smarty-i18n-${version}";
version = "1.0";
src = fetchFromGitHub {
owner = "kikimosha";
repo = "smarty3-i18n";
rev = "${version}";
sha256 = "0rjxq4wka73ayna3hb5dxc5pgc8bw8p5fy507yc6cv2pl4h4nji2";
};
installPhase = ''
mkdir $out
cp block.t.php $out
'';
meta = with stdenv.lib; {
description = "gettext for the smarty3 framework";
license = licenses.lgpl21;
homepage = https://github.com/kikimosha/smarty3-i18n;
maintainers = with maintainers; [ das_j ];
platforms = platforms.all;
};
}

View File

@ -5186,6 +5186,7 @@ with pkgs;
};
smarty3 = callPackage ../development/libraries/smarty3 { };
smarty3-i18n = callPackage ../development/libraries/smarty3-i18n { };
smbldaptools = callPackage ../tools/networking/smbldaptools {
inherit (perlPackages) perlldap CryptSmbHash DigestSHA1;