pkgs/development/tools: stdenv.lib -> lib

This commit is contained in:
Ben Siraphob
2021-01-23 20:30:03 +07:00
parent f6a583eeec
commit c522fec274
534 changed files with 1314 additions and 1314 deletions
+5 -5
View File
@@ -1,10 +1,10 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:
{ lib, stdenv, buildGoPackage, fetchFromGitHub }:
with stdenv.lib;
with lib;
buildGoPackage rec {
pname = "kubicorn";
version = "2018-10-13-${stdenv.lib.strings.substring 0 7 rev}";
version = "2018-10-13-${lib.strings.substring 0 7 rev}";
rev = "4c7f3623e9188fba43778271afe161a4facfb657";
src = fetchFromGitHub {
@@ -20,7 +20,7 @@ buildGoPackage rec {
meta = {
description = "Simple, cloud native infrastructure for Kubernetes";
homepage = "http://kubicorn.io/";
maintainers = with stdenv.lib.maintainers; [ offline ];
license = stdenv.lib.licenses.asl20;
maintainers = with lib.maintainers; [ offline ];
license = lib.licenses.asl20;
};
}