nixpkgs/pkgs/applications/version-management/git-repo/default.nix
Michael Weiss cc5f7d9091
gitRepo: Cleanup the patchPhase
This variant should be easier to read (it was pretty messy before...).
The end result stays the same.
2019-01-19 12:30:08 +01:00

50 lines
1.3 KiB
Nix

{ stdenv, fetchFromGitHub, makeWrapper
, python, git, gnupg, less, cacert
}:
stdenv.mkDerivation rec {
name = "git-repo-${version}";
version = "1.13.2";
src = fetchFromGitHub {
owner = "android";
repo = "tools_repo";
rev = "v${version}";
sha256 = "0ll1yzwgpayps7c05j8kf1m4zvww7crmlyy7xa0w5g2krbjvjzvi";
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ python ];
patchPhase = ''
substituteInPlace repo --replace \
'urllib.request.urlopen(url)' \
'urllib.request.urlopen(url, cafile="${cacert}/etc/ssl/certs/ca-bundle.crt")'
'';
installPhase = ''
mkdir -p $out/bin
cp repo $out/bin/repo
'';
# Important runtime dependencies
postFixup = ''
wrapProgram $out/bin/repo --prefix PATH ":" \
"${stdenv.lib.makeBinPath [ git gnupg less ]}"
'';
meta = with stdenv.lib; {
description = "Android's repo management tool";
longDescription = ''
Repo is a Python script based on Git that helps manage many Git
repositories, does the uploads to revision control systems, and automates
parts of the development workflow. Repo is not meant to replace Git, only
to make it easier to work with Git.
'';
homepage = https://android.googlesource.com/tools/repo;
license = licenses.asl20;
maintainers = [ maintainers.primeos ];
platforms = platforms.unix;
};
}