summaryrefslogtreecommitdiffstats
path: root/pkgs/shells/dash
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2021-01-15 13:28:56 +0700
committerBen Siraphob <bensiraphob@gmail.com>2021-01-15 14:24:03 +0700
commite245ae3c3ac34d24ec6ceb7b86aa74be4fb8e707 (patch)
tree2054faccda7117a09809be91fb1b9e12fbe70a5e /pkgs/shells/dash
parentf35b06e86db3574743efd24ead9ba6b68e1b9a99 (diff)
pkgs/shells: stdenv.lib -> lib
Diffstat (limited to 'pkgs/shells/dash')
-rw-r--r--pkgs/shells/dash/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/shells/dash/default.nix b/pkgs/shells/dash/default.nix
index 2c6e9cc0e681..24d5af7e74ee 100644
--- a/pkgs/shells/dash/default.nix
+++ b/pkgs/shells/dash/default.nix
@@ -19,9 +19,9 @@ stdenv.mkDerivation rec {
url = "https://git.kernel.org/pub/scm/utils/dash/dash.git/patch/?id=29d6f2148f10213de4e904d515e792d2cf8c968e";
sha256 = "08q90bx36ixwlcj331dh7420qyj8i0qh1cc1gljrhd83fhl9w0y5";
})
- ] ++ stdenv.lib.optional stdenv.isDarwin ./0001-fix-dirent64-et-al-on-darwin.patch;
+ ] ++ lib.optional stdenv.isDarwin ./0001-fix-dirent64-et-al-on-darwin.patch;
depsBuildBuild = [ buildPackages.stdenv.cc ];
- nativeBuildInputs = stdenv.lib.optional stdenv.isDarwin autoreconfHook;
+ nativeBuildInputs = lib.optional stdenv.isDarwin autoreconfHook;
meta = with lib; {
homepage = "http://gondor.apana.org.au/~herbert/dash/";