Rename fetchGitHub -> fetchFromGitHub

We're not fetching all of GitHub, after all.
This commit is contained in:
Eelco Dolstra
2014-05-08 15:49:39 +02:00
parent ebd8573046
commit 6aeb59bbe0
3 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -1,11 +1,11 @@
{ stdenv, fetchGitHub, python, pythonPackages, sysstat, unzip, tornado
{ stdenv, fetchFromGitHub, python, pythonPackages, sysstat, unzip, tornado
, makeWrapper }:
stdenv.mkDerivation rec {
version = "4.2.1";
name = "dd-agent-${version}";
src = fetchGitHub {
src = fetchFromGitHub {
owner = "DataDog";
repo = "dd-agent";
rev = version;