diff options
author | tv <tv@krebsco.de> | 2021-06-02 00:28:38 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2021-06-02 02:43:37 +0200 |
commit | 124925bb780bbfdbf3578ad772ea75dbae437242 (patch) | |
tree | 05488bef2cee8b84294acf9efe28a62187552ad6 /tv/5pkgs/simple/hc.nix | |
parent | ea902ce405d6ed0e8160bc46d8a03344d1ae3094 (diff) |
tv hc: stdenv.lib -> lib
Deprecated since nixpkgs 21.05
Diffstat (limited to 'tv/5pkgs/simple/hc.nix')
-rw-r--r-- | tv/5pkgs/simple/hc.nix | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tv/5pkgs/simple/hc.nix b/tv/5pkgs/simple/hc.nix index 4d325e16c..086445ec0 100644 --- a/tv/5pkgs/simple/hc.nix +++ b/tv/5pkgs/simple/hc.nix @@ -1,4 +1,6 @@ -{ coreutils, fetchgit, findutils, gawk, gnugrep, makeWrapper, qrencode, stdenv, texlive, utillinux, zbar }: +{ fetchgit, lib, makeWrapper, stdenv +, coreutils, findutils, gawk, gnugrep, qrencode, texlive, utillinux, zbar +}: stdenv.mkDerivation rec { name = "hc-${meta.version}"; @@ -19,7 +21,7 @@ stdenv.mkDerivation rec { cp $src/bin/hc $out/bin/hc wrapProgram $out/bin/hc \ - --prefix PATH : ${stdenv.lib.makeBinPath [ + --prefix PATH : ${lib.makeBinPath [ coreutils findutils gawk |