Skip to content

Commit

Permalink
pioneers: build with gtk3
Browse files Browse the repository at this point in the history
Won't build the gtk client otherwise. cc #35967
  • Loading branch information
fpletz committed Mar 4, 2018
1 parent 08ce0ff commit 9d65dbf
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions pkgs/games/pioneers/default.nix
@@ -1,4 +1,4 @@
{stdenv, fetchurl, gtk2, pkgconfig, intltool } :
{stdenv, fetchurl, gtk3, pkgconfig, intltool } :

stdenv.mkDerivation rec {
name = "pioneers-15.4";
Expand All @@ -7,10 +7,8 @@ stdenv.mkDerivation rec {
sha256 = "1p1d18hrfmqcnghip3shkzcs5qkz6j99jvkdkqfi7pqdvjc323cs";
};

nativeBuildInputs = [ pkgconfig ];
buildInputs = [ gtk2 intltool ];

hardeningDisable = [ "format" ];
nativeBuildInputs = [ pkgconfig intltool ];
buildInputs = [ gtk3 ];

meta = {
homepage = http://pio.sourceforge.net/;
Expand Down

0 comments on commit 9d65dbf

Please sign in to comment.