summary refs log tree commit diff
path: root/pkgs/shells/rc/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/shells/rc/default.nix')
-rw-r--r--pkgs/shells/rc/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/shells/rc/default.nix b/pkgs/shells/rc/default.nix
index cd5ed860b2e66..a71d5ba289717 100644
--- a/pkgs/shells/rc/default.nix
+++ b/pkgs/shells/rc/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, autoreconfHook
+{ lib, stdenv, fetchurl, autoreconfHook
 , ncurses #acinclude.m4 wants headers for tgetent().
 , historySupport ? false
 , readline ? null
@@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
     shellPath = "/bin/rc";
   };
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     description = "The Plan 9 shell";
     longDescription = "Byron Rakitzis' UNIX reimplementation of Tom Duff's Plan 9 shell.";
     homepage = "http://tobold.org/article/rc";