aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Update utils.nixEuAndreh2019-06-021-1/+1
| | | | Fix boolean logic bug on overwriting docs.
* Format utils.nixEuAndreh2019-06-021-1/+3
|
* Don't overwrite current content in publishScriptEuAndreh2019-06-021-1/+4
|
* Update generated utils.nixEuAndreh2019-06-021-14/+10
|
* Make hunspell call more clearEuAndreh2019-06-011-2/+8
|
* Fix check-spelling.sh linter offensesEuAndreh2019-06-011-5/+6
|
* Format Nix code (linter offense)EuAndreh2019-06-012-17/+18
|
* Move test code out of default.nixEuAndreh2019-06-014-90/+155
| | | | | - use common utils.nix code for generic test derivation; - move spell checking code into standalone Bash file.
* Use pinned version of hakyllEuAndreh2019-05-221-2/+8
| | | | | | | Current unstable is marked as broken. Also see: - https://github.com/NixOS/nixpkgs/pull/61593
* Check spelling with hunspell and fix current errorsEuAndreh2019-05-229-27/+73
| | | | | | | | The =sort= command requires $LANG to be set in order to sort consistently acrros environments and OSes. hunspell needs it to properly interpret non-ascii characters from the provided custom dictionaries.
* Fix hakyll build: use proper src for subtasks.docsEuAndreh2019-05-221-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I couldn't find out what was causing the website build to fail. I looked back in the git history and since I remembered the code back in January 1st 2019 was working, I searched for the last commit from that period (before I started working on it again recently). This was the perfect use case for using git bisect. After identifying a good commit back then ( 55e947d7901c17dbb1365a5cfb9f40acd50e903b), I read the =git help bisect= instructions, I only had to find the command to combine with =git bisect run= to test each commit. Initially I considered doing a simple or: nix-build -A subtasks.docs || nix-build -A build This would work, but I later figured that the =publishScript= derivation existed back then, and I could instead use it. The final bisect commands were: git bisect start HEAD 55e947d7901c17dbb1365a5cfb9f40acd50e903b -- git bisect run nix-build -A publishScript git bisect reset After the second command and around 30 seconds and a lot of output, git said: error: build of '/nix/store/299c1mwcwxxl74cvzr13lzlfqfdqxdlc-publish.sh.drv' failed 997bed0f60a8d09fa14544c0d4c489f771e2534c is the first bad commit commit 997bed0f60a8d09fa14544c0d4c489f771e2534c Author: EuAndreh <eu@euandre.org> Date: Sun May 19 01:39:07 2019 -0300 Split default.nix tasks :100644 100644 00572eb6a32da956d18b14e1c00323bba1b34a72 31feb5afc45ed2592b8f7a81b4ba7fe56fbe3fd1 M default.nix bisect run success After looking at how default.nix was before and after the bad commit, I realised that the =src= attribute of the =subtasks.docs= derivation was adapted incorrectly after being changed from the =build= derivation. After fixing it, it worked :) Great job git :)
* Fail hunspellCheck when hunspell detects spelling mistakesEuAndreh2019-05-221-0/+7
|
* Setup hunspell spellchecking to run against HTML outputEuAndreh2019-05-222-1/+29
|
* Add formatNix subtask and use it as buildInput for test derivationEuAndreh2019-05-221-0/+9
|
* Format default.nix file using nixfmtEuAndreh2019-05-221-16/+17
|
* Add nixfmt to mkShell derivationEuAndreh2019-05-221-0/+2
|
* TODOs.orgEuAndreh2019-05-211-4/+5
|
* Add simple "About Me" pageEuAndreh2019-05-211-1/+5
|
* Add actual tests to website CLIEuAndreh2019-05-214-10/+27
|
* Add Hakyll _cache/ folder to .gitignoreEuAndreh2019-05-211-2/+5
|
* Remove racket package from shell derivationEuAndreh2019-05-211-1/+0
|
* Exclude pastebin/skeleton.org in subtasks.fixme runEuAndreh2019-05-211-1/+1
|
* TODOs.orgEuAndreh2019-05-211-3/+3
|
* Extend buildInputs instead of overrindingEuAndreh2019-05-201-1/+1
|
* TODOs.orgEuAndreh2019-05-201-0/+5
|
* Split default.nix tasksEuAndreh2019-05-191-32/+73
|
* Add shebang to env.shEuAndreh2019-05-191-0/+4
|
* Use NixOS instead of Debian of CI build OS.EuAndreh2019-05-192-10/+4
|
* Print CLI errors using Term::ANSIColor.EuAndreh2019-01-056-13/+28
|
* Add BATS tests to CLI usage and basic interactions.EuAndreh2019-01-057-19/+68
| | | | | Also, remove custom =nix-shell= shebang from Perl files. Instead, we should inherit Perl from the =shell= derivation in default.nix.
* TODOs.org.EuAndreh2019-01-011-1/+3
|
* Generate pastebin HTML with pandoc.EuAndreh2018-12-306-601/+7
| | | | | | Instead of generating the HTML manually inside Emacs (=, e e h h=) and than commiting the file to the repo, we now use a more generic approach with pandoc, not tied to any Elisp configuration.
* Use creation date of pastebin instead of dynamic exported date.EuAndreh2018-12-304-3/+9
|
* Edit newly created pastebin with vi.EuAndreh2018-12-301-3/+6
|
* Allow website subcommands to be run on any folder.EuAndreh2018-12-291-2/+5
|
* Revert to file derived from template + envsubst.EuAndreh2018-12-291-11/+11
|
* WIP: Manually modify generated .build.yml.EuAndreh2018-12-291-20/+12
|
* Test Dhall generated .build.yml file.EuAndreh2018-12-291-20/+28
|
* Improve usage message when arguments are missing.EuAndreh2018-12-292-11/+15
|
* Print realpath of generated files.EuAndreh2018-12-293-1/+6
|
* Run podchecker in Nix test step.EuAndreh2018-12-291-1/+1
|
* Add website-slides as Perl subcommand.EuAndreh2018-12-293-27/+70
|
* Fix forwarding of arguments to sub-scripts.EuAndreh2018-12-291-4/+9
|
* Use Getopt::Long and Pod::Usage to build basic CLI.EuAndreh2018-12-294-86/+182
|
* Add =test= to default.nix and run in on CI.EuAndreh2018-12-292-0/+14
|
* WIP: Use Perl instead of Racket for CLI.EuAndreh2018-12-294-43/+75
|
* Add initial Racket CLI for handling scripts.EuAndreh2018-12-243-0/+46
|
* Build and publish website using Nix; remove Makefile.EuAndreh2018-12-246-100/+52
|
* Remove =all= target from Makefile.EuAndreh2018-12-221-3/+0
|
* Add favicon.ico image file.EuAndreh2018-12-222-0/+3
|