2017-05-19 07:16:26 -07:00
|
|
|
{ mkDerivation, lib, copyPathsToStore, fetchurl, qtbase, qtscript, cmake }:
|
2015-05-12 06:51:55 -07:00
|
|
|
|
2017-05-19 07:16:26 -07:00
|
|
|
mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "grantlee";
|
2016-12-16 07:34:07 -08:00
|
|
|
version = "5.1.0";
|
2019-08-22 04:55:11 -07:00
|
|
|
grantleePluginPrefix = "lib/grantlee/${lib.versions.majorMinor version}";
|
2015-05-12 06:51:55 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-12-16 07:34:07 -08:00
|
|
|
url = "https://github.com/steveire/grantlee/archive/v${version}.tar.gz";
|
|
|
|
sha256 = "1lf9rkv0i0kd7fvpgg5l8jb87zw8dzcwd1liv6hji7g4wlpmfdiq";
|
2019-08-15 05:41:18 -07:00
|
|
|
name = "${pname}-${version}.tar.gz";
|
2015-05-12 06:51:55 -07:00
|
|
|
};
|
|
|
|
|
2015-09-27 08:23:10 -07:00
|
|
|
buildInputs = [ qtbase qtscript ];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
2015-05-12 06:51:55 -07:00
|
|
|
|
2017-05-23 14:20:45 -07:00
|
|
|
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
|
2017-05-19 07:16:26 -07:00
|
|
|
|
2017-05-23 14:20:45 -07:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
postFixup =
|
|
|
|
# Disabuse CMake of the notion that libraries are in $dev
|
|
|
|
''
|
2017-10-19 04:51:44 -07:00
|
|
|
for way in release debug; do
|
|
|
|
cmake="$dev/lib/cmake/Grantlee5/GrantleeTargets-$way.cmake"
|
|
|
|
if [ -f "$cmake" ]; then
|
|
|
|
sed -i "$cmake" -e "s|\''${_IMPORT_PREFIX}|$out|"
|
|
|
|
fi
|
|
|
|
done
|
2017-05-23 14:20:45 -07:00
|
|
|
'';
|
2017-05-19 07:16:26 -07:00
|
|
|
|
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
|
2018-04-24 20:20:18 -07:00
|
|
|
doCheck = false; # fails all the tests (ctest)
|
|
|
|
|
2017-05-19 07:16:26 -07:00
|
|
|
meta = with lib; {
|
2015-05-12 06:51:55 -07:00
|
|
|
description = "Qt5 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;
|
2017-05-10 14:20:11 -07:00
|
|
|
maintainers = [ maintainers.ttuegel ];
|
2018-10-12 12:40:32 -07:00
|
|
|
license = licenses.lgpl21;
|
2015-11-25 17:47:05 -08:00
|
|
|
inherit (qtbase.meta) platforms;
|
2015-05-12 06:51:55 -07:00
|
|
|
};
|
|
|
|
}
|