gtkperf: init at 0.40(.0)
This commit is contained in:
parent
b26c224293
commit
22c94d366f
2 changed files with 23 additions and 0 deletions
21
pkgs/development/tools/misc/gtkperf/default.nix
Normal file
21
pkgs/development/tools/misc/gtkperf/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue