2020-08-25 02:43:59 -07:00
|
|
|
{ mkDerivation, lib, 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";
|
2020-04-08 03:48:31 -07:00
|
|
|
version = "5.2.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";
|
2020-04-08 03:48:31 -07:00
|
|
|
sha256 = "02lrdbnvaz19hkawbbj2psww1m04qsbhvv172ggpp5bbfkjwx6hk";
|
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
|
|
|
|
2020-08-25 02:43:59 -07:00
|
|
|
patches = [
|
|
|
|
./grantlee-nix-profiles.patch
|
|
|
|
./grantlee-no-canonicalize-filepath.patch
|
|
|
|
];
|
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.'';
|
|
|
|
|
2020-03-31 18:11:51 -07:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|