nixpkgs/pkgs/by-name/sm/smarty3-i18n/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
601 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, ... }:
stdenv.mkDerivation rec {
pname = "smarty-i18n";
2018-08-07 16:26:49 +00:00
version = "1.0";
src = fetchFromGitHub {
owner = "kikimosha";
repo = "smarty3-i18n";
2019-09-08 23:38:31 +00:00
rev = version;
2018-08-07 16:26:49 +00:00
sha256 = "0rjxq4wka73ayna3hb5dxc5pgc8bw8p5fy507yc6cv2pl4h4nji2";
};
installPhase = ''
mkdir $out
cp block.t.php $out
'';
meta = with lib; {
2018-08-07 16:26:49 +00:00
description = "gettext for the smarty3 framework";
license = licenses.lgpl21;
homepage = "https://github.com/kikimosha/smarty3-i18n";
2018-08-07 16:26:49 +00:00
maintainers = with maintainers; [ das_j ];
platforms = platforms.all;
};
}