gtkperf: init at 0.40(.0)
This commit is contained in:
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 ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user