summary refs log tree commit diff
path: root/pkgs/applications/networking/browsers/otter
diff options
context:
space:
mode:
authorLinus Heckemann <git@sphalerite.org>2018-01-26 19:52:34 +0000
committerLinus Heckemann <git@sphalerite.org>2018-01-26 19:52:34 +0000
commit49d4e6c01875cc1961d57be35fbc8e4349b437f1 (patch)
tree7909723810213db81e3fa69c533784f57c9a6f52 /pkgs/applications/networking/browsers/otter
parented5064c6c5501c204a6310ed1be35e19237aefe8 (diff)
downloadnixlib-49d4e6c01875cc1961d57be35fbc8e4349b437f1.tar
nixlib-49d4e6c01875cc1961d57be35fbc8e4349b437f1.tar.gz
nixlib-49d4e6c01875cc1961d57be35fbc8e4349b437f1.tar.bz2
nixlib-49d4e6c01875cc1961d57be35fbc8e4349b437f1.tar.lz
nixlib-49d4e6c01875cc1961d57be35fbc8e4349b437f1.tar.xz
nixlib-49d4e6c01875cc1961d57be35fbc8e4349b437f1.tar.zst
nixlib-49d4e6c01875cc1961d57be35fbc8e4349b437f1.zip
otter-browser: use qt5.callPackage, fix licence
Diffstat (limited to 'pkgs/applications/networking/browsers/otter')
-rw-r--r--pkgs/applications/networking/browsers/otter/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/applications/networking/browsers/otter/default.nix b/pkgs/applications/networking/browsers/otter/default.nix
index 80e40da269e4..93cf220e4996 100644
--- a/pkgs/applications/networking/browsers/otter/default.nix
+++ b/pkgs/applications/networking/browsers/otter/default.nix
@@ -1,4 +1,5 @@
-{ stdenv, qt5, cmake, openssl, gst_all_1, fetchFromGitHub
+{ stdenv, cmake, openssl, gst_all_1, fetchFromGitHub
+, qtbase, qtmultimedia, qtwebengine
 , version ? "0.9.94"
 , sourceSha ? "19mfm0f6qqkd78aa6q4nq1y9gnlasqiyk68zgqjp1i03g70h08k5"
 }:
@@ -14,10 +15,10 @@ stdenv.mkDerivation {
 
   nativeBuildInputs = [ cmake ];
 
-  buildInputs = with qt5; [ qtbase qtmultimedia qtwebengine ];
+  buildInputs = [ qtbase qtmultimedia qtwebengine ];
 
   meta = with stdenv.lib; {
-    license = licenses.gpl3;
+    license = licenses.gpl3Plus;
     description = "Browser aiming to recreate the best aspects of the classic Opera (12.x) UI using Qt5";
     maintainers = with maintainers; [ lheckemann ];
   };