Skip to content

Commit

Permalink
android-file-transfer: fix building with qt
Browse files Browse the repository at this point in the history
Use mkDerivation has instead of stdenv.mkDerivation (see #54525).
  • Loading branch information
xaverdh committed Jul 31, 2019
1 parent 2e869f7 commit 064ddec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/tools/filesystems/android-file-transfer/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{ stdenv, fetchFromGitHub, cmake, fuse, readline, pkgconfig, qtbase }:
{ stdenv, mkDerivation, fetchFromGitHub, cmake, fuse, readline, pkgconfig, qtbase }:

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

Expand Down

0 comments on commit 064ddec

Please sign in to comment.