f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
41 lines
1.3 KiB
Nix
41 lines
1.3 KiB
Nix
{stdenv, fetchurl, ant, jre, jdk}:
|
|
stdenv.mkDerivation rec {
|
|
name = "${pname}-${version}";
|
|
pname = "abcl";
|
|
version = "1.4.0";
|
|
# or fetchFromGitHub(owner,repo,rev) or fetchgit(rev)
|
|
src = fetchurl {
|
|
url = "https://common-lisp.net/project/armedbear/releases/${version}/${pname}-src-${version}.tar.gz";
|
|
sha256 = "1y4nixm1459ch6226ikdilcsf91c2rg1d82cqqmcn24kfjl1m62i";
|
|
};
|
|
configurePhase = ''
|
|
mkdir nix-tools
|
|
export PATH="$PWD/nix-tools:$PATH"
|
|
echo "echo nix-builder.localdomain" > nix-tools/hostname
|
|
chmod a+x nix-tools/*
|
|
|
|
hostname
|
|
'';
|
|
buildPhase = ''
|
|
ant
|
|
'';
|
|
installPhase = ''
|
|
mkdir -p "$out"/{bin,share/doc/abcl,lib/abcl}
|
|
cp -r README COPYING CHANGES examples/ "$out/share/doc/abcl/"
|
|
cp -r dist/*.jar contrib/ "$out/lib/abcl/"
|
|
|
|
echo "#! ${stdenv.shell}" >> "$out/bin/abcl"
|
|
echo "${jre}/bin/java -cp \"$out/lib/abcl/abcl.jar:$out/lib/abcl/abcl-contrib.jar:\$CLASSPATH\" org.armedbear.lisp.Main \"\$@\"" >> "$out/bin/abcl"
|
|
chmod a+x "$out"/bin/*
|
|
'';
|
|
buildInputs = [jre ant jdk jre];
|
|
meta = {
|
|
inherit version;
|
|
description = ''A JVM-based Common Lisp implementation'';
|
|
license = stdenv.lib.licenses.gpl3 ;
|
|
maintainers = [stdenv.lib.maintainers.raskin];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
homepage = https://common-lisp.net/project/armedbear/;
|
|
};
|
|
}
|