The source code and dockerfile for the GSW2024 AI Lab.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
 
 
 

22 lines
543 B

{ stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
name = "googletest-${version}";
version = "1.8.0";
buildInputs = [ cmake ];
src = fetchFromGitHub {
owner = "google";
repo = "googletest";
rev = "release-${version}";
sha256 = "0bjlljmbf8glnd9qjabx73w6pd7ibv43yiyngqvmvgxsabzr8399";
};
meta = with stdenv.lib; {
description = "Google's C++ test framework";
homepage = "https://github.com/google/googletest";
maintainers = [ maintainers.spacefrogg ];
platforms = platforms.all;
};
}