depot/third_party/nixpkgs/pkgs/development/libraries/smarty3/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

29 lines
807 B
Nix

{ stdenv, fetchFromGitHub, ... }: stdenv.mkDerivation rec {
pname = "smarty3";
version = "3.1.35";
src = fetchFromGitHub {
owner = "smarty-php";
repo = "smarty";
rev = "v${version}";
sha256 = "05prjhlsmjmbjpks3bsx4ifz5izshsabys20c56jgibgnjsflm6k";
};
installPhase = ''
mkdir $out
cp -r libs/* $out
'';
meta = with stdenv.lib; {
description = "Smarty 3 template engine";
longDescription = ''
Smarty is a template engine for PHP, facilitating the
separation of presentation (HTML/CSS) from application
logic. This implies that PHP code is application
logic, and is separated from the presentation.
'';
homepage = "https://www.smarty.net";
license = licenses.lgpl21Plus;
maintainers = with maintainers; [ das_j ];
};
}