lisps: some refactoring
This commit is contained in:
@@ -46,15 +46,15 @@ stdenv.mkDerivation rec {
|
||||
--add-flags "--core $out/share/sbcl/sbcl.core"
|
||||
'';
|
||||
|
||||
postFixup = if stdenv.isArm then "" else ''
|
||||
postFixup = stdenv.lib.optionalString (!stdenv.isArm) ''
|
||||
patchelf --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) $out/share/sbcl/sbcl
|
||||
'';
|
||||
|
||||
meta = {
|
||||
meta = with stdenv.lib; {
|
||||
description = "Lisp compiler";
|
||||
homepage = "http://www.sbcl.org";
|
||||
license = "bsd";
|
||||
maintainers = [stdenv.lib.maintainers.raskin];
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
license = licenses.publicDomain; # and FreeBSD
|
||||
maintainers = [maintainers.raskin];
|
||||
platforms = attrNames options;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -72,12 +72,7 @@ stdenv.mkDerivation rec {
|
||||
INSTALL_ROOT=$out sh install.sh
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Lisp compiler";
|
||||
homepage = http://www.sbcl.org;
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
maintainers = [stdenv.lib.maintainers.raskin];
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
meta = sbclBootstrap.meta // {
|
||||
inherit version;
|
||||
updateWalker = true;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user