Merge pull request #110465 from siraben/development-compilers-stdenv-lib

pkgs/development/compilers: stdenv.lib -> lib
This commit is contained in:
Jörg Thalheim
2021-01-23 10:07:31 +00:00
committed by GitHub
318 changed files with 1658 additions and 1655 deletions

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, autoreconfHook, mlton }:
{ lib, stdenv, fetchFromGitHub, autoreconfHook, mlton }:
stdenv.mkDerivation rec {
pname = "mlkit";
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
buildFlags = ["mlkit" "mlkit_libs"];
meta = with stdenv.lib; {
meta = with lib; {
description = "Standard ML Compiler and Toolkit";
homepage = "https://elsman.com/mlkit/";
license = licenses.gpl2Plus;