Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / smarty3-i18n / default.nix
blobe617ba58e8b44da5b54e302e5a6243fa8ac83e11
1 { lib, stdenv, fetchFromGitHub, ... }:
3 stdenv.mkDerivation rec {
4   pname = "smarty-i18n";
5   version = "1.0";
7   src = fetchFromGitHub {
8     owner = "kikimosha";
9     repo = "smarty3-i18n";
10     rev = version;
11     sha256 = "0rjxq4wka73ayna3hb5dxc5pgc8bw8p5fy507yc6cv2pl4h4nji2";
12   };
14   installPhase = ''
15     mkdir $out
16     cp block.t.php $out
17   '';
19   meta = with lib; {
20     description = "gettext for the smarty3 framework";
21     license = licenses.lgpl21;
22     homepage = "https://github.com/kikimosha/smarty3-i18n";
23     maintainers = with maintainers; [ das_j ];
24     platforms = platforms.all;
25   };