{"id":16348432,"url":"https://github.com/devinus/clojure-box","last_synced_at":"2025-09-02T13:09:00.367Z","repository":{"id":2417382,"uuid":"3385663","full_name":"devinus/clojure-box","owner":"devinus","description":"An all-in-one installer for Clojure on Windows. Includes syntax highlighting and the REPL, plus enhanced editing with Slime and all of Emacs.","archived":false,"fork":false,"pushed_at":"2012-02-08T09:42:22.000Z","size":302,"stargazers_count":18,"open_issues_count":0,"forks_count":4,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-09-01T10:29:11.184Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Emacs Lisp","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/devinus.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2012-02-08T08:58:55.000Z","updated_at":"2021-03-10T15:44:45.000Z","dependencies_parsed_at":"2022-09-17T11:02:22.915Z","dependency_job_id":null,"html_url":"https://github.com/devinus/clojure-box","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/devinus/clojure-box","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devinus%2Fclojure-box","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devinus%2Fclojure-box/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devinus%2Fclojure-box/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devinus%2Fclojure-box/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devinus","download_url":"https://codeload.github.com/devinus/clojure-box/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devinus%2Fclojure-box/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273287700,"owners_count":25078581,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-02T02:00:09.530Z","response_time":77,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-11T00:51:58.066Z","updated_at":"2025-09-02T13:09:00.337Z","avatar_url":"https://github.com/devinus.png","language":"Emacs Lisp","funding_links":[],"categories":[],"sub_categories":[],"readme":"Clojure Box\n===========\n\nAn all-in-one Clojure environment built on Emacs and Slime\n\nRequirements\n------------\n\nAll you need is Java 1.5 or later. If Clojure Box can find java.exe on\nyour system (usually it's in `C:\\Windows\\system32`), it provides the rest.\n\nComponents\n----------\n\nClojure Box consists of these components:\n\n- Clojure \u003chttp://clojure.org\u003e\n- Clojure Contrib \u003chttp://clojure.org\u003e\n- Emacs, via EmacsW32 \u003chttp://ourcomments.org/Emacs/EmacsW32.html\u003e\n- clojure-mode \u003chttp://github.com/technomancy/clojure-mode\u003e\n- swank-clojure \u003chttp://github.com/technomancy/swank-clojure\u003e\n- Slime \u003chttp://common-lisp.net/project/slime/\u003e\n- Paredit \u003chttp://mumble.net/~campbell/emacs/paredit.el\u003e\n\nParedit is included for your convenience, but you'll have to activate it\nin `~/.emacs`.\n\n```lisp\n(require 'paredit)\n(add-hook 'slime-repl-mode-hook (lambda () (paredit-mode +1)))\n```\n\nThanks to all the developers of these excellent packages!\n\nCustomization\n-------------\n\nClojure Box's startup is controlled by `default.el` in the `emacs\\site-lisp`\ndirectory under the installation. You can put your own customizations in\nyour `.emacs` file (these customizations will not be overwritten by future\nClojure Box or Emacs installations). Type `C-x C-f` and enter `~/.emacs`.\nEdit the file and save it with `C-x C-s`. `~` is the same as your `HOME`\nenvironment variable, or the application data directory under your user\nprofile if you have no `HOME`.\n\nTo make your own code available to Clojure's import function, the\neasiest way is to put your source files under `src` and jars under `lib` in\nyour project directory. Then run `M-x swank-clojure-project` and tell the\nprompt your directory.\n\nAnother way is to add jars or source directories to the classpath in\nyour `.emacs`. To make `C:/dev/project/src/a.clj` and everything in\n`C:/dev/my-lib.jar` available, put this:\n\n```lisp\n(setq swank-clojure-classpath\n  (list \"C:/dev/project/src\" \"C:/dev/my-lib.jar\"))\n```\n\nTo add more, put them in the same list as above or add to that list:\n\n```lisp\n(add-to-list 'swank-clojure-classpath \"C:/dev/my-lib-c/src\")\n```\n\nYou'll have to restart the REPL to make new jars available.\n\nEmacs may not respect custom `JAVA_HOME` settings on Windows Vista 64-bit.\nIf you're having trouble running the right Java, try specifying an\nabsolute `java.exe` in `~/.emacs`:\n\n```lisp\n(setq swank-clojure-java-path\n  \"\\\"C:/Program Files/Java/XXXXX/java.exe\\\"\")\n```\n\nInno Setup Source\n-----------------\n\nThe installer is built with Inno Setup. The installer source file is\nincluded with Clojure Box.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevinus%2Fclojure-box","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevinus%2Fclojure-box","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevinus%2Fclojure-box/lists"}