2020-08-25 10:43:59 +01:00
|
|
|
{ mkDerivation, lib, fetchurl, qtbase, qtscript, cmake }:
|
2015-05-12 14:51:55 +01:00
|
|
|
|
2017-05-19 15:16:26 +01:00
|
|
|
mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "grantlee";
|
2020-04-08 11:48:31 +01:00
|
|
|
version = "5.2.0";
|
2019-08-22 12:55:11 +01:00
|
|
|
grantleePluginPrefix = "lib/grantlee/${lib.versions.majorMinor version}";
|
2015-05-12 14:51:55 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-12-16 15:34:07 +00:00
|
|
|
url = "https://github.com/steveire/grantlee/archive/v${version}.tar.gz";
|
2020-04-08 11:48:31 +01:00
|
|
|
sha256 = "02lrdbnvaz19hkawbbj2psww1m04qsbhvv172ggpp5bbfkjwx6hk";
|
2019-08-15 13:41:18 +01:00
|
|
|
name = "${pname}-${version}.tar.gz";
|
2015-05-12 14:51:55 +01:00
|
|
|
};
|
|
|
|
|
2015-09-27 16:23:10 +01:00
|
|
|
buildInputs = [ qtbase qtscript ];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
2015-05-12 14:51:55 +01:00
|
|
|
|
2020-08-25 10:43:59 +01:00
|
|
|
patches = [
|
|
|
|
./grantlee-nix-profiles.patch
|
|
|
|
./grantlee-no-canonicalize-filepath.patch
|
|
|
|
];
|
2017-05-19 15:16:26 +01:00
|
|
|
|
2017-05-23 22:20:45 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
postFixup =
|
|
|
|
# Disabuse CMake of the notion that libraries are in $dev
|
|
|
|
''
|
2017-10-19 12:51:44 +01: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 22:20:45 +01:00
|
|
|
'';
|
2017-05-19 15:16:26 +01:00
|
|
|
|
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
|
2018-04-25 04:20:18 +01:00
|
|
|
doCheck = false; # fails all the tests (ctest)
|
|
|
|
|
2017-05-19 15:16:26 +01:00
|
|
|
meta = with lib; {
|
2015-05-12 14:51:55 +01: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-04-01 02:11:51 +01:00
|
|
|
homepage = "http://gitorious.org/grantlee";
|
2017-05-10 22:20:11 +01:00
|
|
|
maintainers = [ maintainers.ttuegel ];
|
2018-10-12 20:40:32 +01:00
|
|
|
license = licenses.lgpl21;
|
2015-11-26 01:47:05 +00:00
|
|
|
inherit (qtbase.meta) platforms;
|
2015-05-12 14:51:55 +01:00
|
|
|
};
|
|
|
|
}
|