treewide: simplify pkgs.stdenv.lib -> pkgs.lib

The library does not depend on stdenv, that `stdenv` exposes `lib` is
an artifact of the ancient origins of nixpkgs.
This commit is contained in:
Dominik Xaver Hörl
2021-01-10 20:12:06 +01:00
parent f41dc35387
commit 25bef2d8f9
260 changed files with 270 additions and 270 deletions
@@ -59,7 +59,7 @@ mkDerivation {
knownVulnerabilities = [ "CVE-2017-1000385" ];
platforms = ["x86_64-linux" "x86_64-darwin"];
license = pkgs.stdenv.lib.licenses.asl20;
maintainers = with pkgs.stdenv.lib.maintainers; [ mdaiter ];
license = pkgs.lib.licenses.asl20;
maintainers = with pkgs.lib.maintainers; [ mdaiter ];
};
}