gtest: Modularize out the source files into a derivation
This commit is contained in:
22
pkgs/development/libraries/gtest/source.nix
Normal file
22
pkgs/development/libraries/gtest/source.nix
Normal 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; };
|
||||
}
|
||||
Reference in New Issue
Block a user