forked from mirrors/nixpkgs
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
43 lines
1.1 KiB
Nix
43 lines
1.1 KiB
Nix
{ lib, stdenv, fetchFromGitHub, fetchpatch, pkgconfig, fuse, adb }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "adbfs-rootless";
|
|
version = "2016-10-02";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "spion";
|
|
repo = "adbfs-rootless";
|
|
rev = "b58963430e40c9246710a16cec58e7ffc88baa48";
|
|
sha256 = "1kjibl86k6pf7vciwaaxwv5m4q28zdpd2g7yhp71av32jq6j3wm8";
|
|
};
|
|
|
|
patches = [
|
|
(fetchpatch {
|
|
# https://github.com/spion/adbfs-rootless/issues/14
|
|
url = "https://github.com/kronenpj/adbfs-rootless/commit/35f87ce0a7aeddaaad118daed3022e01453b838d.patch";
|
|
sha256 = "1iigla74n3hphnyx9ffli9wqk7v71ylvsxama868czlg7851jqj9";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ fuse ];
|
|
|
|
postPatch = ''
|
|
# very ugly way of replacing the adb calls
|
|
sed -e 's|"adb |"${adb}/bin/adb |g' \
|
|
-i adbfs.cpp
|
|
'';
|
|
|
|
installPhase = ''
|
|
install -D adbfs $out/bin/adbfs
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Mount Android phones on Linux with adb, no root required";
|
|
inherit (src.meta) homepage;
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ Profpatsch ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|