depot/third_party/nixpkgs/pkgs/development/tools/misc/gtkperf/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

24 lines
716 B
Nix

{ 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 ];
# https://openbenchmarking.org/innhold/7e9780c11550d09aa67bdba71248facbe2d781db
patches = [ ./bench.patch ];
meta = with stdenv.lib; {
description = "Application designed to test GTK performance";
homepage = "http://gtkperf.sourceforge.net/";
license = with licenses; [ gpl2 ];
maintainers = with maintainers; [ dtzWill ];
};
}