about summary refs log tree commit diff
path: root/pkgs/applications/video
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2019-08-07 16:42:40 +0000
committerVincent Laporte <vbgl@users.noreply.github.com>2019-08-14 14:43:11 +0000
commit6bb07c80bf52e341b548268f9a34142b5b0995ac (patch)
treeab140bc5fbb2ed870dcee2f644fa4c7540a51ed2 /pkgs/applications/video
parent95ec53813a058dbf156d2f1dea972a63fbe8c87e (diff)
downloadnixlib-6bb07c80bf52e341b548268f9a34142b5b0995ac.tar
nixlib-6bb07c80bf52e341b548268f9a34142b5b0995ac.tar.gz
nixlib-6bb07c80bf52e341b548268f9a34142b5b0995ac.tar.bz2
nixlib-6bb07c80bf52e341b548268f9a34142b5b0995ac.tar.lz
nixlib-6bb07c80bf52e341b548268f9a34142b5b0995ac.tar.xz
nixlib-6bb07c80bf52e341b548268f9a34142b5b0995ac.tar.zst
nixlib-6bb07c80bf52e341b548268f9a34142b5b0995ac.zip
smtube: use qt5’s mkDerivation
See #65399
Diffstat (limited to 'pkgs/applications/video')
-rw-r--r--pkgs/applications/video/smtube/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/video/smtube/default.nix b/pkgs/applications/video/smtube/default.nix
index 41f82a8bdd5c..59e541892eef 100644
--- a/pkgs/applications/video/smtube/default.nix
+++ b/pkgs/applications/video/smtube/default.nix
@@ -1,6 +1,6 @@
-{ stdenv, fetchurl, qmake, qtscript, qtwebkit }:
+{ lib, mkDerivation, fetchurl, qmake, qtscript, qtwebkit }:
 
-stdenv.mkDerivation rec {
+mkDerivation rec {
   version = "19.6.0";
   name = "smtube-${version}";
 
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
   nativeBuildInputs = [ qmake ];
   buildInputs = [ qtscript qtwebkit ];
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     description = "Play and download Youtube videos";
     homepage = http://smplayer.sourceforge.net/smtube.php;
     license = licenses.gpl2Plus;