2021-01-25 09:26:54 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, ... }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "smarty3";
|
2022-01-28 18:58:31 +01:00
|
|
|
version = "3.1.44";
|
2018-08-04 11:02:23 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "smarty-php";
|
|
|
|
repo = "smarty";
|
|
|
|
rev = "v${version}";
|
2022-01-28 18:58:31 +01:00
|
|
|
sha256 = "sha256-9a9OC18jyFpmFXffYOYHZ0j01j4NCF5zwrSYr1fZwqo=";
|
2018-08-04 11:02:23 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir $out
|
|
|
|
cp -r libs/* $out
|
|
|
|
'';
|
|
|
|
|
2021-01-21 18:00:13 +01:00
|
|
|
meta = with lib; {
|
2018-08-04 11:02:23 +02:00
|
|
|
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.
|
|
|
|
'';
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://www.smarty.net";
|
2018-08-04 11:02:23 +02:00
|
|
|
license = licenses.lgpl21Plus;
|
|
|
|
maintainers = with maintainers; [ das_j ];
|
|
|
|
};
|
|
|
|
}
|