gtest: Modularize out the source files into a derivation

This commit is contained in:
William A. Kennington III
2015-02-06 12:05:11 -08:00
parent 967ad3fbc3
commit f9dcf13b6e
2 changed files with 31 additions and 10 deletions

View File

@@ -0,0 +1,22 @@
{ fetchurl, stdenv, unzip, ... }:
stdenv.mkDerivation rec {
name = "gtest-src-${version}";
version = "1.7.0";
src = fetchurl {
url = "https://googletest.googlecode.com/files/gtest-${version}.zip";
sha256 = "03fnw3bizw9bcx7l5qy1vz7185g33d5pxqcb6aqxwlrzv26s2z14";
};
buildInputs = [ unzip ];
buildCommand = ''
unpackPhase
cd gtest-${version}
mkdir $out
cp -r * $out
'';
passthru = { inherit version; };
}