nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

sbcl, ecl, clisp: set meta.mainProgram

+3
+1
pkgs/development/compilers/ecl/default.nix
··· 84 84 description = "Lisp implementation aiming to be small, fast and easy to embed"; 85 85 homepage = "https://common-lisp.net/project/ecl/"; 86 86 license = licenses.mit; 87 + mainProgram = "ecl"; 87 88 maintainers = lib.teams.lisp.members; 88 89 platforms = platforms.unix; 89 90 changelog = "https://gitlab.com/embeddable-common-lisp/ecl/-/raw/${version}/CHANGELOG";
+1
pkgs/development/compilers/sbcl/default.nix
··· 231 231 description = "Common Lisp compiler"; 232 232 homepage = "https://sbcl.org"; 233 233 license = licenses.publicDomain; # and FreeBSD 234 + mainProgram = "sbcl"; 234 235 maintainers = lib.teams.lisp.members; 235 236 platforms = attrNames bootstrapBinaries ++ [ 236 237 # These aren’t bootstrapped using the binary distribution but compiled
+1
pkgs/development/interpreters/clisp/default.nix
··· 126 126 meta = { 127 127 description = "ANSI Common Lisp Implementation"; 128 128 homepage = "http://clisp.org"; 129 + mainProgram = "clisp"; 129 130 maintainers = lib.teams.lisp.members; 130 131 license = lib.licenses.gpl2Plus; 131 132 platforms = with lib.platforms; linux ++ darwin;