summary refs log tree commit diff
path: root/pkgs/desktops/lxqt/screengrab/default.nix
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2019-07-27 17:05:17 -0400
committerworldofpeace <worldofpeace@protonmail.ch>2019-08-19 21:22:18 -0400
commit3167eb3780ca59f1786e9f80d017e5ac3e7807ac (patch)
tree747ce5be757961a0a53d2c9e4dddf37e22364c8c /pkgs/desktops/lxqt/screengrab/default.nix
parent2d09e4892947a16199a189d755618fc2bd5c34a5 (diff)
downloadnixpkgs-3167eb3780ca59f1786e9f80d017e5ac3e7807ac.tar
nixpkgs-3167eb3780ca59f1786e9f80d017e5ac3e7807ac.tar.gz
nixpkgs-3167eb3780ca59f1786e9f80d017e5ac3e7807ac.tar.bz2
nixpkgs-3167eb3780ca59f1786e9f80d017e5ac3e7807ac.tar.lz
nixpkgs-3167eb3780ca59f1786e9f80d017e5ac3e7807ac.tar.xz
nixpkgs-3167eb3780ca59f1786e9f80d017e5ac3e7807ac.tar.zst
nixpkgs-3167eb3780ca59f1786e9f80d017e5ac3e7807ac.zip
lxqt: use qt5's mkDerivation
This should also ensure that the applications get wrapped
appropriately.
Diffstat (limited to 'pkgs/desktops/lxqt/screengrab/default.nix')
-rw-r--r--pkgs/desktops/lxqt/screengrab/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/desktops/lxqt/screengrab/default.nix b/pkgs/desktops/lxqt/screengrab/default.nix
index 14fa977e023..bac68f7166c 100644
--- a/pkgs/desktops/lxqt/screengrab/default.nix
+++ b/pkgs/desktops/lxqt/screengrab/default.nix
@@ -1,6 +1,6 @@
-{ stdenv, fetchFromGitHub, cmake, pkgconfig, qtbase, qttools, qtx11extras, qtsvg, kwindowsystem, libqtxdg, xorg, autoPatchelfHook }:
+{ lib, mkDerivation, fetchFromGitHub, cmake, pkgconfig, qtbase, qttools, qtx11extras, qtsvg, kwindowsystem, libqtxdg, xorg, autoPatchelfHook }:
 
-stdenv.mkDerivation rec {
+mkDerivation rec {
   pname = "screengrab";
   version = "1.101";
 
@@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
     xorg.libXdmcp
   ];
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     description = "Crossplatform tool for fast making screenshots";
     homepage = https://github.com/lxqt/screengrab;
     license = licenses.gpl2;