commonsBcel 6.6.1 -> 6.7.0 https://repology.org/project/bcel/versions attrpath: commonsBcel Checking auto update branch... No auto update branch exists Old version 6.6.1" not present in master derivation file with contents: {lib, stdenv, fetchurl}: stdenv.mkDerivation rec { version = "6.7.0"; pname = "commons-bcel"; src = fetchurl { url = "mirror://apache/commons/bcel/binaries/bcel-${version}-bin.tar.gz"; hash = "sha256-0b7iXp2iTwqcgI3IE3/Px/5mLT06yV6u5HdYboux6i4="; }; installPhase = '' tar xf ${src} mkdir -p $out/share/java cp bcel-${version}.jar $out/share/java/ ''; meta = { homepage = "https://commons.apache.org/proper/commons-bcel/"; description = "Gives users a convenient way to analyze, create, and manipulate (binary) Java class files"; sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; maintainers = with lib.maintainers; [ copumpkin ]; license = lib.licenses.asl20; platforms = with lib.platforms; unix; }; }