diff options
| author | Ralph Amissah <ralph.amissah@gmail.com> | 2022-09-28 18:33:09 -0400 | 
|---|---|---|
| committer | Ralph Amissah <ralph.amissah@gmail.com> | 2022-10-03 21:58:01 -0400 | 
| commit | 3b6e0279c4afffc8b11cd7d881e0a8b6f43aa431 (patch) | |
| tree | d919fa206e169300caa05bce77e6a79fd2d7803c /sundry | |
| parent | org noweb adjustments (diff) | |
org nix
Diffstat (limited to 'sundry')
| -rw-r--r-- | sundry/spine_search_cgi/.gitignore | 2 | ||||
| -rw-r--r-- | sundry/spine_search_cgi/derivation.nix | 2 | ||||
| -rwxr-xr-x | sundry/spine_search_cgi/shell.nix | 6 | 
3 files changed, 5 insertions, 5 deletions
| diff --git a/sundry/spine_search_cgi/.gitignore b/sundry/spine_search_cgi/.gitignore index d9d6575..7673ca9 100644 --- a/sundry/spine_search_cgi/.gitignore +++ b/sundry/spine_search_cgi/.gitignore @@ -1,4 +1,5 @@  # git ls-files --others --exclude-from=.git/info/exclude +# git clean -ix  *  !.gitignore  !README.md @@ -19,6 +20,7 @@  !*.nix  !nix  !nix/** +!flake.lock  !.envrc  !src  !src/** diff --git a/sundry/spine_search_cgi/derivation.nix b/sundry/spine_search_cgi/derivation.nix index f3c9959..6b1b6e6 100644 --- a/sundry/spine_search_cgi/derivation.nix +++ b/sundry/spine_search_cgi/derivation.nix @@ -90,7 +90,7 @@ mkDubDerivation rec {    buildInputs = [      pkgs.sqlite (        with pkgs; [ -        nixFlakes +        nixVersions.unstable #nixFlakes          ## package manager          dub          ## compiler diff --git a/sundry/spine_search_cgi/shell.nix b/sundry/spine_search_cgi/shell.nix index 64a4e02..d918d20 100755 --- a/sundry/spine_search_cgi/shell.nix +++ b/sundry/spine_search_cgi/shell.nix @@ -5,12 +5,12 @@ mkShell {    buildInputs = [      ### nix_related      direnv -    nixFlakes +    nixVersions.unstable #nixFlakes      nix-prefetch-git      validatePkgConfig      jq      git -    #ps +    ps      ### d_build_related      ## package manager      dub @@ -30,13 +30,11 @@ mkShell {      #wget      aria      ### candy -    jq      starship    ];    shellHook = ''      if [[ -f ".envrc" ]]; then        source .envrc      fi -    eval "$(starship init bash)"    '';  } | 
