summary refs log tree commit diff
path: root/pkgs/tools/nix/nix-query-tree-viewer/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/nix/nix-query-tree-viewer/default.nix')
-rw-r--r--pkgs/tools/nix/nix-query-tree-viewer/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/nix/nix-query-tree-viewer/default.nix b/pkgs/tools/nix/nix-query-tree-viewer/default.nix
index de0b88378a4..f820f36e49f 100644
--- a/pkgs/tools/nix/nix-query-tree-viewer/default.nix
+++ b/pkgs/tools/nix/nix-query-tree-viewer/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, rustPlatform, glib, gtk3, wrapGAppsHook }:
+{ lib, stdenv, fetchFromGitHub, rustPlatform, glib, gtk3, wrapGAppsHook }:
 
 rustPlatform.buildRustPackage rec {
   pname = "nix-query-tree-viewer";
@@ -22,7 +22,7 @@ rustPlatform.buildRustPackage rec {
 
   cargoSha256 = "1pbyi7knqmqxbpi3jhl492is9zkaxdpdnmbm11nqwc1nvvbjblzc";
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     description = "GTK viewer for the output of `nix store --query --tree`";
     homepage    = "https://github.com/cdepillabout/nix-query-tree-viewer";
     license     = with licenses; [ mit ];