gtkperf: init at 0.40(.0)

This commit is contained in:
Will Dietz 2017-06-29 13:12:04 -05:00
parent b26c224293
commit 22c94d366f
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{ stdenv, fetchurl, gtk2, pkgconfig, libintl }:
stdenv.mkDerivation {
name = "gtkperf-0.40.0";
src = fetchurl {
url = "mirror://sourceforge//gtkperf/gtkperf_0.40.tar.gz";
sha256 = "0yxj3ap3yfi76vqg6xjvgc16nfi9arm9kp87s35ywf10fd73814p";
};
hardeningDisable = [ "format" ];
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ gtk2 libintl ];
meta = with stdenv.lib; {
description = "Application designed to test GTK+ performance";
homepage = http://gtkperf.sourceforge.net/;
license = with licenses; [ gpl2 ];
maintainers = with maintainers; [ dtzWill ];
};
}

View file

@ -2867,6 +2867,8 @@ with pkgs;
gtkgnutella = callPackage ../tools/networking/p2p/gtk-gnutella { };
gtkperf = callPackage ../development/tools/misc/gtkperf { };
gtkvnc = callPackage ../tools/admin/gtk-vnc {};
gtmess = callPackage ../applications/networking/instant-messengers/gtmess { };