slog: stdenv.lib -> lib

Deprecated since nixpkgs 21.05
This commit is contained in:
tv 2021-06-02 01:32:00 +02:00
parent 7ea3136475
commit cb11e10d95

View File

@ -1,4 +1,4 @@
{ pkgs, stdenv, fetchFromGitHub }: { fetchFromGitHub, lib, pkgs, stdenv }:
## use with: ## use with:
# . $(command -v slog.sh) # . $(command -v slog.sh)
@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
install -m755 slog.sh $out/bin install -m755 slog.sh $out/bin
''; '';
meta = with stdenv.lib; { meta = with lib; {
description = "POSIX shell logging"; description = "POSIX shell logging";
license = licenses.mit; license = licenses.mit;
}; };