Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b23ac198b73a
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f9dd0f679caa
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 16, 2020

  1. Copy the full SHA
    1c68255 View commit details
  2. Merge pull request #103955 from xaverdh/aft-4.0

    android-file-transfer: 3.9 -> 4.0
    doronbehar authored Nov 16, 2020

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    f9dd0f6 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/tools/filesystems/android-file-transfer/default.nix
8 changes: 4 additions & 4 deletions pkgs/tools/filesystems/android-file-transfer/default.nix
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{ stdenv, mkDerivation, fetchFromGitHub, cmake, fuse, readline, pkgconfig, qtbase }:
{ stdenv, mkDerivation, fetchFromGitHub, cmake, fuse, readline, pkgconfig, qtbase, qttools }:

mkDerivation rec {
pname = "android-file-transfer";
version = "3.9";
version = "4.0";

src = fetchFromGitHub {
owner = "whoozle";
repo = "android-file-transfer-linux";
rev = "v${version}";
sha256 = "1pwayyd5xrmngfrmv2vwr8ns2wi199xkxf7dks8fl9zmlpizg3c3";
sha256 = "11d4n4ybmc25gz18nlps3v11m3y8dw5bcb817gkik5m4nvqnbcsf";
};

nativeBuildInputs = [ cmake readline pkgconfig ];
buildInputs = [ fuse qtbase ];
buildInputs = [ fuse qtbase qttools ];

meta = with stdenv.lib; {
description = "Reliable MTP client with minimalistic UI";