Fix folder structure
This commit is contained in:
parent
f984f716ea
commit
3726f77f0a
16 changed files with 1926 additions and 27 deletions
19
.direnv/bin/nix-direnv-reload
Executable file
19
.direnv/bin/nix-direnv-reload
Executable file
|
@ -0,0 +1,19 @@
|
|||
#!/usr/bin/env bash
|
||||
set -e
|
||||
if [[ ! -d "/home/leonv/Git/Sudoku" ]]; then
|
||||
echo "Cannot find source directory; Did you move it?"
|
||||
echo "(Looking for "/home/leonv/Git/Sudoku")"
|
||||
echo 'Cannot force reload with this script - use "direnv reload" manually and then try again'
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# rebuild the cache forcefully
|
||||
_nix_direnv_force_reload=1 direnv exec "/home/leonv/Git/Sudoku" true
|
||||
|
||||
# Update the mtime for .envrc.
|
||||
# This will cause direnv to reload again - but without re-building.
|
||||
touch "/home/leonv/Git/Sudoku/.envrc"
|
||||
|
||||
# Also update the timestamp of whatever profile_rc we have.
|
||||
# This makes sure that we know we are up to date.
|
||||
touch -r "/home/leonv/Git/Sudoku/.envrc" "/home/leonv/Git/Sudoku/.direnv"/*.rc
|
1
.direnv/flake-inputs/2hc9lg18zd6yabw9jqj0wy3s9kyvkzp0-source
Symbolic link
1
.direnv/flake-inputs/2hc9lg18zd6yabw9jqj0wy3s9kyvkzp0-source
Symbolic link
|
@ -0,0 +1 @@
|
|||
/nix/store/2hc9lg18zd6yabw9jqj0wy3s9kyvkzp0-source
|
1
.direnv/flake-inputs/79qk1r0q5xc9g3qhw0m143x04q6d7x2m-source
Symbolic link
1
.direnv/flake-inputs/79qk1r0q5xc9g3qhw0m143x04q6d7x2m-source
Symbolic link
|
@ -0,0 +1 @@
|
|||
/nix/store/79qk1r0q5xc9g3qhw0m143x04q6d7x2m-source
|
1
.direnv/flake-inputs/bv68i4l7g6s5sixxm0c9lcjdxhlkg0n5-source
Symbolic link
1
.direnv/flake-inputs/bv68i4l7g6s5sixxm0c9lcjdxhlkg0n5-source
Symbolic link
|
@ -0,0 +1 @@
|
|||
/nix/store/bv68i4l7g6s5sixxm0c9lcjdxhlkg0n5-source
|
1
.direnv/flake-inputs/hmiyz975p0bfnzfcbamn6d0v1gfv15ds-source
Symbolic link
1
.direnv/flake-inputs/hmiyz975p0bfnzfcbamn6d0v1gfv15ds-source
Symbolic link
|
@ -0,0 +1 @@
|
|||
/nix/store/hmiyz975p0bfnzfcbamn6d0v1gfv15ds-source
|
1
.direnv/flake-inputs/lwyjz70qh12nq6cb7fixl85vryzxqm3c-source
Symbolic link
1
.direnv/flake-inputs/lwyjz70qh12nq6cb7fixl85vryzxqm3c-source
Symbolic link
|
@ -0,0 +1 @@
|
|||
/nix/store/lwyjz70qh12nq6cb7fixl85vryzxqm3c-source
|
1
.direnv/flake-profile-a5d5b61aa8a61b7d9d765e1daf971a9a578f1cfa
Symbolic link
1
.direnv/flake-profile-a5d5b61aa8a61b7d9d765e1daf971a9a578f1cfa
Symbolic link
|
@ -0,0 +1 @@
|
|||
/nix/store/dl8p5s0m5prz82vbshy9n1k12yj1imsg-ghc-shell-for-Sudoku-0.1.0.0-0-env
|
1883
.direnv/flake-profile-a5d5b61aa8a61b7d9d765e1daf971a9a578f1cfa.rc
Normal file
1883
.direnv/flake-profile-a5d5b61aa8a61b7d9d765e1daf971a9a578f1cfa.rc
Normal file
File diff suppressed because one or more lines are too long
2
.envrc
2
.envrc
|
@ -1 +1 @@
|
|||
use flake
|
||||
use flake
|
||||
|
|
23
LICENSE
23
LICENSE
|
@ -1,9 +1,20 @@
|
|||
MIT License
|
||||
Copyright (c) 2024 Leon Vatthauer
|
||||
|
||||
Copyright (c) 2024 leonv
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
"Software"), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
The above copyright notice and this permission notice shall be included
|
||||
in all copies or substantial portions of the Software.
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
||||
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
|
20
src/LICENSE
20
src/LICENSE
|
@ -1,20 +0,0 @@
|
|||
Copyright (c) 2024 Leon Vatthauer
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
"Software"), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included
|
||||
in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
||||
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
Loading…
Reference in a new issue