mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
planner: unstable-2018-03-25 -> unstable-2019-02-14
- the warnings no longer need to be disabled, fixed upstream - enable the Python 2 / PyGTK bindings and plugin, by the way
This commit is contained in:
parent
aee2dc8899
commit
5cb13523a4
1 changed files with 9 additions and 8 deletions
|
@ -7,10 +7,10 @@
|
|||
, libtool
|
||||
, gnome2
|
||||
, libxslt
|
||||
, python
|
||||
, python2
|
||||
}:
|
||||
|
||||
let version = "unstable-2018-03-25";
|
||||
let version = "unstable-2019-02-13";
|
||||
|
||||
in stdenv.mkDerivation {
|
||||
name = "planner-${version}";
|
||||
|
@ -19,13 +19,10 @@ in stdenv.mkDerivation {
|
|||
domain = "gitlab.gnome.org";
|
||||
owner = "GNOME";
|
||||
repo = "planner";
|
||||
rev = "2a2bf11d96a7f5d64f05c9053661baa848e47797";
|
||||
sha256 = "1bhh05kkbnhibldc1fc7kv7bwf8aa1vh4q379syqd3jbas8y521g";
|
||||
rev = "76d31defae4979aa51dd37e8888f61e9a6a51367";
|
||||
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; [
|
||||
pkgconfig
|
||||
intltool
|
||||
|
@ -44,10 +41,14 @@ in stdenv.mkDerivation {
|
|||
libgnomeui
|
||||
libglade
|
||||
libxslt
|
||||
python
|
||||
python2.pkgs.pygtk
|
||||
];
|
||||
|
||||
preConfigure = ''./autogen.sh'';
|
||||
configureFlags = [
|
||||
"--enable-python"
|
||||
"--enable-python-plugin"
|
||||
];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
|
|
Loading…
Reference in a new issue