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

This commit is contained in:
Ben Siraphob
2021-01-23 19:26:19 +07:00
parent f6a583eeec
commit c522fec274
534 changed files with 1314 additions and 1314 deletions

View File

@@ -1,4 +1,4 @@
{ stdenv, makeWrapper, fetchurl, jre }:
{ lib, stdenv, makeWrapper, fetchurl, jre }:
stdenv.mkDerivation rec {
pname = "cfr";
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
makeWrapper ${jre}/bin/java $out/bin/cfr --add-flags "-jar $jar"
'';
meta = with stdenv.lib; {
meta = with lib; {
description = "Another java decompiler";
longDescription = ''
CFR will decompile modern Java features - Java 8 lambdas (pre and post

View File

@@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
done
'';
meta = with stdenv.lib; {
meta = with lib; {
homepage = https://sourceforge.net/projects/dex2jar/;
description = "Tools to work with android .dex and java .class files";
maintainers = with maintainers; [ makefu ];

View File

@@ -1,4 +1,4 @@
{ fetchurl, stdenv, zlib }:
{ fetchurl, lib, stdenv, zlib }:
let version = "0.98"; in
stdenv.mkDerivation {
@@ -25,8 +25,8 @@ let version = "0.98"; in
homepage = "https://savannah.nongnu.org/projects/fastjar/";
license = stdenv.lib.licenses.gpl2Plus;
platforms = stdenv.lib.platforms.linux;
license = lib.licenses.gpl2Plus;
platforms = lib.platforms.linux;
maintainers = [ ];
};
}

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchzip }:
{ lib, stdenv, fetchzip }:
stdenv.mkDerivation rec {
pname = "jhiccup";
@@ -29,8 +29,8 @@ stdenv.mkDerivation rec {
meta = {
description = "Measure JVM application stalls and GC pauses";
homepage = "https://www.azul.com/jhiccup/";
license = stdenv.lib.licenses.cc0;
platforms = stdenv.lib.platforms.linux;
maintainers = with stdenv.lib.maintainers; [ thoughtpolice ];
license = lib.licenses.cc0;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ thoughtpolice ];
};
}

View File

@@ -33,7 +33,7 @@ stdenv.mkDerivation rec {
cp -r . $out
'';
meta = with stdenv.lib; {
meta = with lib; {
description = "A visual interface for viewing information about Java applications";
longDescription = ''
VisualVM is a visual tool integrating several commandline JDK