mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
grantlee: build with Qt 5.5
This commit is contained in:
parent
dfbcab342a
commit
569316e4fc
32
pkgs/development/libraries/grantlee/5.x-old.nix
Normal file
32
pkgs/development/libraries/grantlee/5.x-old.nix
Normal file
@ -0,0 +1,32 @@
|
||||
{ stdenv, fetchurl, qt5, cmake }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "grantlee-5.0.0";
|
||||
|
||||
# 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 = "0qdifp1sg87j3869xva5ai2d6d5ph7z4b85wv1fypf2k5sljpwpa";
|
||||
};
|
||||
|
||||
buildInputs = [ cmake qt5.base qt5.script ];
|
||||
|
||||
meta = {
|
||||
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;
|
||||
maintainers = [ stdenv.lib.maintainers.urkud ];
|
||||
inherit (qt5.base.meta) platforms;
|
||||
};
|
||||
}
|
@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, qt5, cmake }:
|
||||
{ stdenv, fetchurl, qtbase, qtscript, cmake }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "grantlee-5.0.0";
|
||||
@ -12,7 +12,8 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "0qdifp1sg87j3869xva5ai2d6d5ph7z4b85wv1fypf2k5sljpwpa";
|
||||
};
|
||||
|
||||
buildInputs = [ cmake qt5.base qt5.script ];
|
||||
buildInputs = [ qtbase qtscript ];
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
meta = {
|
||||
description = "Qt5 port of Django template system";
|
||||
|
@ -6424,7 +6424,7 @@ let
|
||||
|
||||
grantlee = callPackage ../development/libraries/grantlee { };
|
||||
|
||||
grantlee5 = callPackage ../development/libraries/grantlee/5.x.nix { };
|
||||
grantlee5 = callPackage ../development/libraries/grantlee/5.x-old.nix { };
|
||||
|
||||
gsasl = callPackage ../development/libraries/gsasl { };
|
||||
|
||||
@ -7936,6 +7936,8 @@ let
|
||||
|
||||
accounts-qt = callPackage ../development/libraries/accounts-qt { };
|
||||
|
||||
grantlee = callPackage ../development/libraries/grantlee/5.x.nix { };
|
||||
|
||||
libdbusmenu = callPackage ../development/libraries/libdbusmenu-qt/qt-5.5.nix { };
|
||||
|
||||
phonon = callPackage ../development/libraries/phonon/qt5 { };
|
||||
|
Loading…
Reference in New Issue
Block a user