about summary refs log tree commit diff
path: root/pkgs/development/interpreters
diff options
context:
space:
mode:
author7c6f434c <7c6f434c@mail.ru>2024-03-01 11:14:34 +0000
committerGitHub <noreply@github.com>2024-03-01 11:14:34 +0000
commit4b88513c095988463653ccca772e901f59d697ff (patch)
treec11a49e52ec5bc65b0a1ba5a858fc4bd7a6af14c /pkgs/development/interpreters
parent6706a36a0d5c62879996b6eabfd11f0fb65b66b6 (diff)
parent3dea08030b41d46e8b54a1755d4205d2b4299213 (diff)
downloadnixlib-4b88513c095988463653ccca772e901f59d697ff.tar
nixlib-4b88513c095988463653ccca772e901f59d697ff.tar.gz
nixlib-4b88513c095988463653ccca772e901f59d697ff.tar.bz2
nixlib-4b88513c095988463653ccca772e901f59d697ff.tar.lz
nixlib-4b88513c095988463653ccca772e901f59d697ff.tar.xz
nixlib-4b88513c095988463653ccca772e901f59d697ff.tar.zst
nixlib-4b88513c095988463653ccca772e901f59d697ff.zip
Merge pull request #292353 from hraban/lisp-mainprograms
sbcl, ecl, clisp: set meta.mainProgram
Diffstat (limited to 'pkgs/development/interpreters')
-rw-r--r--pkgs/development/interpreters/clisp/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/development/interpreters/clisp/default.nix b/pkgs/development/interpreters/clisp/default.nix
index 0ff0f6a49816..f6218ef8f3b2 100644
--- a/pkgs/development/interpreters/clisp/default.nix
+++ b/pkgs/development/interpreters/clisp/default.nix
@@ -126,6 +126,7 @@ stdenv.mkDerivation {
   meta = {
     description = "ANSI Common Lisp Implementation";
     homepage = "http://clisp.org";
+    mainProgram = "clisp";
     maintainers = lib.teams.lisp.members;
     license = lib.licenses.gpl2Plus;
     platforms = with lib.platforms; linux ++ darwin;