summary refs log tree commit diff
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2019-08-08 16:27:55 -0400
committerGitHub <noreply@github.com>2019-08-08 16:27:55 -0400
commitd94667d50dd4fc9740d392a0fe09032107718505 (patch)
tree333b34853f1583ae24545eb0625474159329dad8
parentc64106f64cc910fb4b12ff318e8df793a88a6c74 (diff)
parentd81a46364fb06155eb6186d8c75663a7eb2721f0 (diff)
downloadnixpkgs-d94667d50dd4fc9740d392a0fe09032107718505.tar
nixpkgs-d94667d50dd4fc9740d392a0fe09032107718505.tar.gz
nixpkgs-d94667d50dd4fc9740d392a0fe09032107718505.tar.bz2
nixpkgs-d94667d50dd4fc9740d392a0fe09032107718505.tar.lz
nixpkgs-d94667d50dd4fc9740d392a0fe09032107718505.tar.xz
nixpkgs-d94667d50dd4fc9740d392a0fe09032107718505.tar.zst
nixpkgs-d94667d50dd4fc9740d392a0fe09032107718505.zip
Merge pull request #66340 from sam-willis/qbittorrent
qbittorrent: use qt5's mkDerivation
-rw-r--r--pkgs/applications/networking/p2p/qbittorrent/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/networking/p2p/qbittorrent/default.nix b/pkgs/applications/networking/p2p/qbittorrent/default.nix
index 9d2ac8ed384..7ffd79edba4 100644
--- a/pkgs/applications/networking/p2p/qbittorrent/default.nix
+++ b/pkgs/applications/networking/p2p/qbittorrent/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, pkgconfig
+{ mkDerivation, lib, fetchFromGitHub, pkgconfig
 , boost, libtorrentRasterbar, qtbase, qttools, qtsvg
 , debugSupport ? false # Debugging
 , guiSupport ? true, dbus ? null # GUI (disable to run headless)
@@ -6,9 +6,9 @@
 }:
 
 assert guiSupport -> (dbus != null);
-with stdenv.lib;
+with lib;
 
-stdenv.mkDerivation rec {
+mkDerivation rec {
   name = "qbittorrent-${version}";
   version = "4.1.7";