From e1a887a658da130c2a513d4c770d5026565c4e69 Mon Sep 17 00:00:00 2001 From: dadada Date: Wed, 2 Jun 2021 20:24:22 +0200 Subject: [PATCH] replace stdenv.lib with lib --- default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/default.nix b/default.nix index 124e906..99f30e6 100644 --- a/default.nix +++ b/default.nix @@ -1,4 +1,4 @@ -{ stdenv }: +{ stdenv, lib }: stdenv.mkDerivation rec { name = "dadadaScripts"; @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { cp -r bin $out/ ''; - meta = with stdenv.lib; { + meta = with lib; { description = "Assorted scripts"; license = licenses.mit; platforms = platforms.linux;