diff options
author | makefu <github@syntax-fehler.de> | 2021-12-04 21:24:48 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2021-12-04 21:24:48 +0100 |
commit | 7ca789f598c856ceda3ac55d028ab5a8a8a1e6a2 (patch) | |
tree | 9793b82947801f39f55b393cd02951c25de26099 /makefu/5pkgs/xdcc-dl/default.nix | |
parent | 4f500d5006b9a1594589b60278515220ed4b75da (diff) |
ma pkgs: stdenv.lib -> lib
Diffstat (limited to 'makefu/5pkgs/xdcc-dl/default.nix')
-rw-r--r-- | makefu/5pkgs/xdcc-dl/default.nix | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/makefu/5pkgs/xdcc-dl/default.nix b/makefu/5pkgs/xdcc-dl/default.nix index d9fdc3d2b..26264beb1 100644 --- a/makefu/5pkgs/xdcc-dl/default.nix +++ b/makefu/5pkgs/xdcc-dl/default.nix @@ -11,7 +11,7 @@ let inherit (pkgs) makeWrapper; - inherit (pkgs.stdenv.lib) fix' extends inNixShell; + inherit (pkgs.lib) fix' extends inNixShell; pythonPackages = import "${toString pkgs.path}/pkgs/top-level/python-packages.nix" { @@ -73,7 +73,7 @@ let propagatedBuildInputs = [ self."six" ]; - meta = with pkgs.stdenv.lib; { + meta = with pkgs.lib; { homepage = ""; license = licenses.mit; description = "Run JavaScript code from Python"; @@ -91,7 +91,7 @@ let propagatedBuildInputs = [ self."beautifulsoup4" ]; - meta = with pkgs.stdenv.lib; { + meta = with pkgs.lib; { homepage = ""; license = licenses.mit; description = "Screen-scraping library"; @@ -106,7 +106,7 @@ let doCheck = commonDoCheck; buildInputs = commonBuildInputs; propagatedBuildInputs = [ ]; - meta = with pkgs.stdenv.lib; { + meta = with pkgs.lib; { homepage = ""; license = "MPL-2.0"; description = "Python package for providing Mozilla's CA Bundle."; @@ -124,7 +124,7 @@ let self."PyExecJS" self."requests" ]; - meta = with pkgs.stdenv.lib; { + meta = with pkgs.lib; { homepage = ""; license = ""; description = "A simple Python module to bypass Cloudflare's anti-bot page. See https://github.com/Anorov/cloudflare-scrape for more information."; @@ -139,7 +139,7 @@ let doCheck = commonDoCheck; buildInputs = commonBuildInputs; propagatedBuildInputs = [ ]; - meta = with pkgs.stdenv.lib; { + meta = with pkgs.lib; { homepage = ""; license = licenses.psfl; description = "Type Hints for Python"; @@ -155,7 +155,7 @@ let doCheck = commonDoCheck; buildInputs = commonBuildInputs; propagatedBuildInputs = [ ]; - meta = with pkgs.stdenv.lib; { + meta = with pkgs.lib; { homepage = ""; license = licenses.lgpl2; description = "A full-featured console (xterm et al.) user interface library"; @@ -177,7 +177,7 @@ let self."typing" self."urwid" ]; - meta = with pkgs.stdenv.lib; { + meta = with pkgs.lib; { homepage = ""; license = licenses.gpl3; description = "An XDCC File Downloader based on the irclib framework"; |