4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
44 lines
1.2 KiB
Nix
44 lines
1.2 KiB
Nix
{ lib, stdenv, fetchFromGitHub, python3, platform-tools, makeWrapper
|
|
, socat, go-mtpfs, adbfs-rootless
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "adb-sync-unstable";
|
|
version = "2019-01-01";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "google";
|
|
repo = "adb-sync";
|
|
rev = "fb7c549753de7a5579ed3400dd9f8ac71f7bf1b1";
|
|
sha256 = "1kfpdqs8lmnh144jcm1qmfnmigzrbrz5lvwvqqb7021b2jlf69cl";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
buildInputs = [ python3 ];
|
|
|
|
dontBuild = true;
|
|
|
|
installPhase = let
|
|
dependencies = stdenv.lib.makeBinPath [ platform-tools socat go-mtpfs adbfs-rootless ];
|
|
in ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/bin
|
|
cp adb-{sync,channel} $out/bin
|
|
|
|
wrapProgram $out/bin/adb-sync --suffix PATH : "${dependencies}"
|
|
wrapProgram $out/bin/adb-channel --suffix PATH : "${dependencies}"
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A tool to synchronise files between a PC and an Android devices using ADB (Android Debug Bridge)";
|
|
homepage = "https://github.com/google/adb-sync";
|
|
license = licenses.asl20;
|
|
platforms = platforms.unix;
|
|
hydraPlatforms = [];
|
|
maintainers = with maintainers; [ scolobb ma27 ];
|
|
};
|
|
}
|