034b1bd1f9
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/grantlee/versions. These checks were done: - built on NixOS - 0 of 0 passed binary check by having a zero exit code. - 0 of 0 passed binary check by having the new version present in output. - found 0.5.1 with grep in /nix/store/6g40ly4agw1h9kvb3cl6yf0g3swi95fc-grantlee-0.5.1 - directory tree listing: https://gist.github.com/e74be5a3f1cab3f4f9f9a56612731410 - du listing: https://gist.github.com/6e697a1e258b3e9e42c164a437f319f2
33 lines
1.0 KiB
Nix
33 lines
1.0 KiB
Nix
{ stdenv, fetchurl, qt4, cmake }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "grantlee-0.5.1";
|
|
|
|
# Upstream download server has country code firewall, so I made a mirror.
|
|
src = fetchurl {
|
|
urls = [
|
|
"http://downloads.grantlee.org/${name}.tar.gz"
|
|
"http://www.loegria.net/grantlee/${name}.tar.gz"
|
|
];
|
|
sha256 = "1b501xbimizmbmysl1j5zgnp48qw0r2r7lhgmxvzhzlv9jzhj60r";
|
|
};
|
|
|
|
buildInputs = [ cmake qt4 ];
|
|
|
|
meta = {
|
|
description = "Qt4 port of Django template system";
|
|
longDescription = ''
|
|
Grantlee is a plugin based String Template system written using the Qt
|
|
framework. The goals of the project are to make it easier for application
|
|
developers to separate the structure of documents from the data they
|
|
contain, opening the door for theming.
|
|
|
|
The syntax is intended to follow the syntax of the Django template system,
|
|
and the design of Django is reused in Grantlee.'';
|
|
|
|
homepage = http://gitorious.org/grantlee;
|
|
maintainers = [ ];
|
|
inherit (qt4.meta) platforms;
|
|
};
|
|
}
|