depot/third_party/nixpkgs/pkgs/development/libraries/smarty3/default.nix
Default email 75ca762b89 Project import generated by Copybara.
GitOrigin-RevId: 29b0d4d0b600f8f5dd0b86e3362a33d4181938f9
2021-03-09 11:18:52 +08:00

31 lines
806 B
Nix

{ lib, stdenv, fetchFromGitHub, ... }:
stdenv.mkDerivation rec {
pname = "smarty3";
version = "3.1.39";
src = fetchFromGitHub {
owner = "smarty-php";
repo = "smarty";
rev = "v${version}";
sha256 = "0n5hmnw66gxqikp6frgfd9ywsvr2azyg5nl7ix89digqlzcljkbg";
};
installPhase = ''
mkdir $out
cp -r libs/* $out
'';
meta = with 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 ];
};
}