about summary refs log tree commit diff
path: root/pkgs/applications/video/smplayer
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2019-08-07 16:40:57 +0000
committerVincent Laporte <vbgl@users.noreply.github.com>2019-08-14 14:43:11 +0000
commit95ec53813a058dbf156d2f1dea972a63fbe8c87e (patch)
tree4ee11b41ce64502b9ee7e0d628d7459f4676d78e /pkgs/applications/video/smplayer
parent81bddd62ca2fc3b76aa88d47caee9fc397937064 (diff)
downloadnixlib-95ec53813a058dbf156d2f1dea972a63fbe8c87e.tar
nixlib-95ec53813a058dbf156d2f1dea972a63fbe8c87e.tar.gz
nixlib-95ec53813a058dbf156d2f1dea972a63fbe8c87e.tar.bz2
nixlib-95ec53813a058dbf156d2f1dea972a63fbe8c87e.tar.lz
nixlib-95ec53813a058dbf156d2f1dea972a63fbe8c87e.tar.xz
nixlib-95ec53813a058dbf156d2f1dea972a63fbe8c87e.tar.zst
nixlib-95ec53813a058dbf156d2f1dea972a63fbe8c87e.zip
smplayer: use qt5’s mkDerivation
See #65399
Diffstat (limited to 'pkgs/applications/video/smplayer')
-rw-r--r--pkgs/applications/video/smplayer/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/video/smplayer/default.nix b/pkgs/applications/video/smplayer/default.nix
index 00a0942ccf6f..495fc6f67452 100644
--- a/pkgs/applications/video/smplayer/default.nix
+++ b/pkgs/applications/video/smplayer/default.nix
@@ -1,6 +1,6 @@
-{ stdenv, fetchurl, qmake, qtscript }:
+{ lib, mkDerivation, fetchurl, qmake, qtscript }:
 
-stdenv.mkDerivation rec {
+mkDerivation rec {
   name = "smplayer-19.5.0";
 
   src = fetchurl {
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
   meta = {
     description = "A complete front-end for MPlayer";
     homepage = http://smplayer.sourceforge.net/;
-    license = stdenv.lib.licenses.gpl3Plus;
-    platforms = stdenv.lib.platforms.linux;
+    license = lib.licenses.gpl3Plus;
+    platforms = lib.platforms.linux;
   };
 }