summary refs log blame commit diff
path: root/pkgs/development/libraries/gbenchmark/default.nix
blob: c1f485e18d9b2a04fe3172c99d1775061af0c79d (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                               

                         
                       
                    




                         
                                                                    

    

                                



                                 
 
                 
 
                    
                                                     
                                                     
                             
                                                    


                                                 
{ lib, stdenv, fetchFromGitHub, cmake, gtest }:

stdenv.mkDerivation rec {
  pname = "gbenchmark";
  version = "1.5.2";

  src = fetchFromGitHub {
    owner = "google";
    repo = "benchmark";
    rev = "v${version}";
    sha256 = "13rxagpzw6bal6ajlmrxlh9kgfvcixn6j734b2bvfqz7lch8n0pa";
  };

  nativeBuildInputs = [ cmake ];

  postPatch = ''
    cp -r ${gtest.src} googletest
    chmod -R u+w googletest
  '';

  doCheck = true;

  meta = with lib; {
    description = "A microbenchmark support library";
    homepage = "https://github.com/google/benchmark";
    license = licenses.asl20;
    platforms = platforms.linux ++ platforms.darwin;
    maintainers = with maintainers; [ abbradar ];
  };
}