mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
02c595ebdb
Co-authored-by: Sandro <sandro.jaeckel@gmail.com> Co-authored-by: nixpkgs-review <nixpkgs-review@example.com>
29 lines
912 B
Nix
29 lines
912 B
Nix
{ lib, stdenv, fetchurl, jdk }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "jboss-as";
|
|
version = "7.1.1.Final";
|
|
src = fetchurl {
|
|
url = "https://download.jboss.org/jbossas/${lib.versions.majorMinor version}/jboss-as-${version}/jboss-as-${version}.tar.gz";
|
|
sha256 = "1bdjw0ib9qr498vpfbg8klqw6rl11vbz7vwn6gp1r5gpqkd3zzc8";
|
|
};
|
|
|
|
phases = [ "unpackPhase" "installPhase" "fixupPhase" ];
|
|
|
|
installPhase = ''
|
|
mv $PWD $out
|
|
find $out/bin -name \*.sh -print0 | xargs -0 sed -i -e '/#!\/bin\/sh/aJAVA_HOME=${jdk}'
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.jboss.org/";
|
|
description = "Open Source J2EE application server";
|
|
license = licenses.lgpl21;
|
|
maintainers = [ maintainers.sander ];
|
|
platforms = platforms.unix;
|
|
knownVulnerabilities = [
|
|
"CVE-2015-7501: remote code execution in apache-commons-collections: InvokerTransformer during deserialisation"
|
|
];
|
|
};
|
|
}
|