Skip to content

Commit

Permalink
treewide: add mainProgram attribute to lisp compilers
Browse files Browse the repository at this point in the history
  • Loading branch information
tani authored and uninsane committed Nov 24, 2024
1 parent 27bc5d4 commit 65f013d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
7 changes: 4 additions & 3 deletions pkgs/development/compilers/ccl/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -83,12 +83,13 @@ in stdenv.mkDerivation rec {
hardeningDisable = [ "format" ];

meta = with lib; {
# assembler failures during build, x86_64-darwin broken since 2020-10-14
broken = (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64);
description = "Clozure Common Lisp";
homepage = "https://ccl.clozure.com/";
license = licenses.asl20;
mainProgram = "ccl";
maintainers = lib.teams.lisp.members;
platforms = attrNames options;
# assembler failures during build, x86_64-darwin broken since 2020-10-14
broken = (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64);
license = licenses.asl20;
};
}
5 changes: 3 additions & 2 deletions pkgs/development/compilers/cmucl/binary.nix
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,15 @@ stdenv.mkDerivation (finalAttrs: {
'';

meta = with lib; {
homepage = "http://www.cons.org/cmucl/";
description = "CMU implementation of Common Lisp";
homepage = "http://www.cons.org/cmucl/";
license = licenses.publicDomain;
longDescription = ''
CMUCL is a free implementation of the Common Lisp programming language
which runs on most major Unix platforms. It mainly conforms to the
ANSI Common Lisp standard.
'';
license = licenses.publicDomain;
mainProgram = "lisp";
maintainers = lib.teams.lisp.members;
platforms = [ "i686-linux" "x86_64-linux" ];
};
Expand Down
3 changes: 2 additions & 1 deletion pkgs/development/compilers/mkcl/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ stdenv.mkDerivation rec {
description = "ANSI Common Lisp Implementation";
homepage = "https://common-lisp.net/project/mkcl/";
license = licenses.lgpl2Plus;
platforms = platforms.linux;
mainProgram = "mkcl";
maintainers = lib.teams.lisp.members;
platforms = platforms.linux;
};
}

0 comments on commit 65f013d

Please sign in to comment.