-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
4 changed files
with
56 additions
and
29 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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ pkgs, ... }: | ||
pkgs.mkShell { | ||
nativeBuildInputs = with pkgs; [ | ||
androidStudioPackages.canary | ||
]; | ||
|
||
buildInputs = with pkgs; [ ]; | ||
} |
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,50 +1,23 @@ | ||
{ pkgs, ... }: | ||
let python = pkgs.python39; | ||
in | ||
pkgs.mkShell { | ||
nativeBuildInputs = with pkgs; [ | ||
pkg-config | ||
clang | ||
gnumake | ||
rustup | ||
python3 | ||
|
||
# bruh | ||
php | ||
] ++ (with jetbrains; with androidStudioPackages; [ | ||
] ++ (with jetbrains; [ | ||
clion | ||
idea-ultimate | ||
phpstorm | ||
rider | ||
|
||
canary | ||
]); | ||
|
||
buildInputs = with pkgs; with python.pkgs; [ | ||
buildInputs = with pkgs; [ | ||
# Rust | ||
openssl | ||
sqlite | ||
gtk4 | ||
|
||
# C# | ||
dotnet-sdk_6 | ||
mono6 | ||
|
||
# Python | ||
setuptools | ||
wheel | ||
venvShellHook | ||
]; | ||
|
||
venvDir = "/home/elxreno/.cache/nix-python-venv"; | ||
|
||
postVenv = '' | ||
unset SOURCE_DATE_EPOCH | ||
./scripts/install_local_packages.sh | ||
''; | ||
postShellHook = '' | ||
# Allow the use of wheels. | ||
unset SOURCE_DATE_EPOCH | ||
PYTHONPATH=$venvDir/${python.sitePackages}:$PYTHONPATH | ||
''; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ pkgs, ... }: | ||
pkgs.mkShell { | ||
nativeBuildInputs = with pkgs; [ | ||
jetbrains.rider | ||
]; | ||
|
||
buildInputs = with pkgs; [ | ||
dotnet-sdk_6 | ||
mono6 | ||
]; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ pkgs, ... }: | ||
let python = pkgs.python39; | ||
in | ||
pkgs.mkShell { | ||
nativeBuildInputs = with pkgs; [ | ||
pkg-config | ||
clang | ||
gnumake | ||
rustup | ||
python3 | ||
] ++ (with jetbrains; [ | ||
pycharm-professional | ||
]); | ||
|
||
buildInputs = with pkgs; with python.pkgs; [ | ||
# Python | ||
aiohttp | ||
setuptools | ||
toml | ||
wheel | ||
venvShellHook | ||
]; | ||
|
||
venvDir = "/home/elxreno/.cache/nix-python-venv"; | ||
|
||
postVenv = '' | ||
unset SOURCE_DATE_EPOCH | ||
./scripts/install_local_packages.sh | ||
''; | ||
postShellHook = '' | ||
# Allow the use of wheels. | ||
unset SOURCE_DATE_EPOCH | ||
PYTHONPATH=$venvDir/${python.sitePackages}:$PYTHONPATH | ||
''; | ||
} |