Merge pull request #55737 from amiloradovsky/planner-2019

planner: unstable-2018-03-25 -> unstable-2019-02-13
This commit is contained in:
Alexey Shmalko 2019-02-17 02:17:55 +02:00 committed by GitHub
commit e77ffb39b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 8 deletions

View File

@ -7,10 +7,10 @@
, libtool , libtool
, gnome2 , gnome2
, libxslt , libxslt
, python , python2
}: }:
let version = "unstable-2018-03-25"; let version = "unstable-2019-02-13";
in stdenv.mkDerivation { in stdenv.mkDerivation {
name = "planner-${version}"; name = "planner-${version}";
@ -19,13 +19,10 @@ in stdenv.mkDerivation {
domain = "gitlab.gnome.org"; domain = "gitlab.gnome.org";
owner = "GNOME"; owner = "GNOME";
repo = "planner"; repo = "planner";
rev = "2a2bf11d96a7f5d64f05c9053661baa848e47797"; rev = "76d31defae4979aa51dd37e8888f61e9a6a51367";
sha256 = "1bhh05kkbnhibldc1fc7kv7bwf8aa1vh4q379syqd3jbas8y521g"; sha256 = "0lbch4drg6005216hgcys93rq92p7zd20968x0gk254kckd9ag5w";
}; };
# planner-popup-button.c:81:2: error: 'g_type_class_add_private' is deprecated [-Werror=deprecated-declarations]
NIX_CFLAGS_COMPILE = "-Wno-error=deprecated-declarations";
nativeBuildInputs = with gnome2; [ nativeBuildInputs = with gnome2; [
pkgconfig pkgconfig
intltool intltool
@ -44,10 +41,14 @@ in stdenv.mkDerivation {
libgnomeui libgnomeui
libglade libglade
libxslt libxslt
python python2.pkgs.pygtk
]; ];
preConfigure = ''./autogen.sh''; preConfigure = ''./autogen.sh'';
configureFlags = [
"--enable-python"
"--enable-python-plugin"
];
enableParallelBuilding = true; enableParallelBuilding = true;