mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-02 19:14:14 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
32 lines
803 B
Nix
32 lines
803 B
Nix
{ lib, stdenv, fetchFromGitHub, ... }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "smarty3";
|
|
version = "3.1.48";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "smarty-php";
|
|
repo = "smarty";
|
|
rev = "v${version}";
|
|
hash = "sha256-QGhccIJ7BZTWGF+n8rmB1RCVyJKID95NW6Yb2VvqqGQ=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|