588a5e92a3
Drop jakarta name from fileupload and update its version Jakarta regexp has been officially retired, and nothing in nixpkgs uses it, so let’s get rid of it. Add commons-io More commons additions/cleanup Closes #4181 Signed-off-by: Mateusz Kowalczyk <fuuzetsu@fuuzetsu.co.uk>
24 lines
692 B
Nix
24 lines
692 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "5.2";
|
|
name = "commons-bcel-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://apache/commons/bcel/binaries/bcel-${version}.tar.gz";
|
|
sha256 = "13ppnd6afljdjq21jpn4ik2h1yxq8k2kg21ghi0lyb1yap1rd7k6";
|
|
};
|
|
|
|
installPhase = ''
|
|
tar xf ${src}
|
|
mkdir -p $out/share/java
|
|
cp bcel-5.2.jar $out/share/java/
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "http://commons.apache.org/proper/commons-bcel/";
|
|
description = "Gives users a convenient way to analyze, create, and manipulate (binary) Java class files";
|
|
maintainers = with stdenv.lib.maintainers; [ copumpkin ];
|
|
license = stdenv.lib.licenses.asl20;
|
|
};
|
|
}
|