aboutsummaryrefslogtreecommitdiff
path: root/default.nix (follow)
Commit message (Expand)AuthorAgeFilesLines
* Finish packaging mdpoEuAndreh2020-11-031-1/+1
* Move other Nix files to nix/EuAndreh2020-11-031-2/+2
* default.nix: Init packaging mdpoEuAndreh2020-11-031-0/+3
* default.nix: Enable --trace by defaultEuAndreh2020-11-031-2/+2
* Add esperanto dictionary and spellcheck websiteEuAndreh2020-10-301-1/+1
* Start jekyll server on shell by defaultEuAndreh2020-10-241-1/+2
* default.nix: Remove rec from shell derivationEuAndreh2020-10-231-1/+1
* Add Perl package to default.nixEuAndreh2020-10-231-0/+1
* Add GraphvizBlock pluginEuAndreh2020-10-161-0/+1
* Add note on starting a live serverEuAndreh2020-10-111-0/+4
* Decouple testing with Nix...Use Nix for build isolation not for test running. EuAndreh2020-10-111-102/+48
* default.nix: Add site attribute as an alias for subtasks.docsEuAndreh2020-10-051-0/+1
* Add sha256 to downloaded hunspell dictionariesEuAndreh2020-09-011-11/+28
* Add spellchecking back to tests, with support for en, pt and fr dictsEuAndreh2020-08-311-6/+26
* default.nix: Don't use $NIXPKGS from environmentEuAndreh2020-08-291-1/+3
* default.nix: Add fastPublishScript derivationEuAndreh2020-08-201-0/+4
* default.nix: Remove existing HTML before publishingEuAndreh2020-08-141-1/+1
* Allow more folders to contain 'FIXME' textEuAndreh2020-08-121-1/+9
* default.nix: Exclude _posts/ from utils.fixme checkEuAndreh2020-08-101-1/+1
* Ignore FIXME occurrencies inside _pastebin/EuAndreh2020-08-061-1/+1
* Remove HTML Tidy step...It conflicts with rouge, and changes the visualization of the final HTML. So I can look at a CSS locally served by 'jekyll serve' but in the end final output is different. EuAndreh2020-08-051-8/+1
* Use tidy to format HTML...More than to lint it :shrug: EuAndreh2020-08-051-1/+2
* Improve error message of tidy-content.shEuAndreh2020-02-141-1/+5
* Add building docs to test derivationEuAndreh2020-02-141-0/+2
* Call tidy-content.sh in build derivationEuAndreh2020-02-141-1/+1
* html tidy wipEuAndreh2020-02-121-1/+3
* Run assert-content.sh in test derivationEuAndreh2020-02-061-0/+10
* Let jekyll create the $out directoryEuAndreh2020-02-061-1/+0
* Format default.nix with nixfmtEuAndreh2020-02-061-2/+1
* Run hunspell in test derivationEuAndreh2020-02-061-0/+11
* Add manual support for multiple languagesEuAndreh2020-02-051-21/+3
* Add bundix Jekyll setupEuAndreh2020-02-051-0/+7
* Delete old filesEuAndreh2020-02-051-49/+2
* Add pastebins.html listing pageEuAndreh2020-01-241-5/+1
* Format default.nix (linter offense)EuAndreh2019-11-151-2/+2
* default.nix :nail_care:EuAndreh2019-06-031-1/+1
* Inline declaration of rootSrcEuAndreh2019-06-031-2/+1
* Don't overwrite current content in publishScriptEuAndreh2019-06-021-1/+4
* Format Nix code (linter offense)EuAndreh2019-06-011-16/+16
* Move test code out of default.nix...- use common utils.nix code for generic test derivation; - move spell checking code into standalone Bash file. EuAndreh2019-06-011-89/+23
* Use pinned version of hakyll...Current unstable is marked as broken. Also see: - https://github.com/NixOS/nixpkgs/pull/61593 EuAndreh2019-05-221-2/+8
* Check spelling with hunspell and fix current errors...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. EuAndreh2019-05-221-7/+11
* Fix hakyll build: use proper src for subtasks.docs...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 :) EuAndreh2019-05-221-0/+1
* Fail hunspellCheck when hunspell detects spelling mistakesEuAndreh2019-05-221-0/+7
* Setup hunspell spellchecking to run against HTML outputEuAndreh2019-05-221-1/+22
* 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
* Remove racket package from shell derivationEuAndreh2019-05-211-1/+0
* Exclude pastebin/skeleton.org in subtasks.fixme runEuAndreh2019-05-211-1/+1