-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Replit user
committed
Oct 3, 2023
1 parent
76744a7
commit 0b6599e
Showing
2 changed files
with
30 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
(defproject sudoku "0.0.1-SNAPSHOT" | ||
:description "Sudoku solver in Clojure" | ||
:plugins [[dev.weavejester/lein-cljfmt "0.11.2"]] | ||
:plugins [[dev.weavejester/lein-cljfmt "0.11.2"] [lein-midje "3.2.1"]] | ||
:dependencies [[org.clojure/clojure "1.11.1"]] | ||
:target-path "target/%s" | ||
:profiles {:dev {:dependencies [[midje "1.6.0" :exclusions [org.clojure/clojure]]] | ||
:plugins [[lein-midje "3.2.1"]]}} | ||
:profiles {:dev {:dependencies [[midje "1.10.6"]]}}) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,49 @@ | ||
{ pkgs }: { | ||
deps = [ | ||
pkgs.stdenv.cc.cc.lib | ||
#pkgs.zlib | ||
#pkgs.glib | ||
#pkgs.xorg.libX11 | ||
#pkgs.glibc | ||
pkgs.jq.bin | ||
pkgs.dotnet-sdk_7 | ||
pkgs.omnisharp-roslyn | ||
pkgs.gradle_6 | ||
pkgs.gradle_7 | ||
pkgs.nodePackages.prettier | ||
pkgs.vim | ||
pkgs.clojure | ||
pkgs.clojure-lsp | ||
pkgs.leiningen | ||
pkgs.graalvm17-ce | ||
pkgs.maven | ||
pkgs.replitPackages.jdt-language-server | ||
pkgs.replitPackages.java-debug | ||
pkgs.pipenv | ||
pkgs.cookiecutter | ||
pkgs.pipreqs | ||
pkgs.python310Full | ||
pkgs.replitPackages.prybar-python310 | ||
pkgs.replitPackages.stderred | ||
pkgs.python310Packages.pip | ||
pkgs.python310Packages.poetry | ||
pkgs.python310Packages.pytest_6 | ||
pkgs.python310Packages.pytest-watch | ||
pkgs.nodejs-16_x | ||
#pkgs.python311Packages.pytest_6 | ||
#pkgs.python311Packages.pytest-watch | ||
pkgs.python311Full | ||
pkgs.python311.pkgs.pip | ||
pkgs.python311.pkgs.virtualenv | ||
pkgs.poetry | ||
pkgs.nodejs-18_x | ||
pkgs.nodePackages.typescript-language-server | ||
pkgs.yarn | ||
pkgs.replitPackages.jest | ||
pkgs.esbuild | ||
pkgs.nodePackages.typescript | ||
pkgs.nodePackages.typescript-language-server | ||
]; | ||
PYTHONHOME = "${pkgs.python310Full}"; | ||
PYTHONBIN = "${pkgs.python310Full}/bin/python3.10"; | ||
# environment = { | ||
# sessionVariables = { | ||
# LD_LIBRARY_PATH = "${pkgs.stdenv.cc.cc.lib}/lib"; | ||
# }; | ||
# }; | ||
# PYTHON_LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath [ | ||
# pkgs.stdenv.cc.cc.lib | ||
# pkgs.zlib | ||
# pkgs.glib | ||
# pkgs.xorg.libX11 | ||
# ]; | ||
#PYTHON_LD_LIBRARY_PATH = "${pkgs.stdenv.cc.cc.lib}"; | ||
PYTHONHOME = "${pkgs.python311}"; | ||
PYTHONBIN = "${pkgs.python311}/bin/python3.11"; | ||
LANG = "en_US.UTF-8"; | ||
STDERREDBIN = "${pkgs.replitPackages.stderred}/bin/stderred"; | ||
PRYBAR_PYTHON_BIN = "${pkgs.replitPackages.prybar-python310}/bin/prybar-python310"; | ||
} | ||
} |