smarty3-i18n: Init at 1.0 (#44622)
This commit is contained in:
parent
1924e14d2e
commit
25f4a12bc4
24
pkgs/development/libraries/smarty3-i18n/default.nix
Normal file
24
pkgs/development/libraries/smarty3-i18n/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -5186,6 +5186,7 @@ with pkgs;
|
|||||||
};
|
};
|
||||||
|
|
||||||
smarty3 = callPackage ../development/libraries/smarty3 { };
|
smarty3 = callPackage ../development/libraries/smarty3 { };
|
||||||
|
smarty3-i18n = callPackage ../development/libraries/smarty3-i18n { };
|
||||||
|
|
||||||
smbldaptools = callPackage ../tools/networking/smbldaptools {
|
smbldaptools = callPackage ../tools/networking/smbldaptools {
|
||||||
inherit (perlPackages) perlldap CryptSmbHash DigestSHA1;
|
inherit (perlPackages) perlldap CryptSmbHash DigestSHA1;
|
||||||
|
Loading…
Reference in New Issue
Block a user