summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/graphics
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-01-27 10:28:55 +0100
committerGitHub <noreply@github.com>2021-01-27 10:28:55 +0100
commitad97ca4e510a433e869a4e8d8a50744ed1e1b002 (patch)
tree8e331277e54b577223742de054c6093bc090eba8 /pkgs/tools/graphics
parent2ee93d61ad2220199e8116526d485a8e23e9aee5 (diff)
parent3bbad8b041ce225eeb84b335c1cd1305b8c6f693 (diff)
Merge pull request #110912 from siraben/stdenv-lib-inherit
treewide: remove inherited stdenv.lib
Diffstat (limited to 'pkgs/tools/graphics')
-rw-r--r--pkgs/tools/graphics/wdisplays/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/graphics/wdisplays/default.nix b/pkgs/tools/graphics/wdisplays/default.nix
index cbcacfab3a81..2640769d186b 100644
--- a/pkgs/tools/graphics/wdisplays/default.nix
+++ b/pkgs/tools/graphics/wdisplays/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, meson, ninja, pkg-config, gtk3, epoxy, wayland, wrapGAppsHook
+{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, gtk3, epoxy, wayland, wrapGAppsHook
, fetchpatch
}:
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
})
];
- meta = let inherit (stdenv) lib; in {
+ meta = with lib; {
description = "A graphical application for configuring displays in Wayland compositors";
homepage = "https://github.com/cyclopsian/wdisplays";
maintainers = with lib.maintainers; [ lheckemann ma27 ];