1
1
mirror of https://github.com/divnix/digga.git synced 2024-10-04 02:27:45 +03:00

chore: bumpup devshell

This commit is contained in:
GTrunSec 2021-09-29 11:03:47 -07:00 committed by Parthiv Seetharaman
parent a1660f4d7b
commit c786add3d1
2 changed files with 22 additions and 22 deletions

View File

@ -42,11 +42,11 @@
},
"devshell": {
"locked": {
"lastModified": 1629275356,
"narHash": "sha256-R17M69EKXP6q8/mNHaK53ECwjFo1pdF+XaJC9Qq8zjg=",
"lastModified": 1632436039,
"narHash": "sha256-OtITeVWcKXn1SpVEnImpTGH91FycCskGBPqmlxiykv4=",
"owner": "numtide",
"repo": "devshell",
"rev": "26f25a12265f030917358a9632cd600b51af1d97",
"rev": "7a7a7aa0adebe5488e5abaec688fd9ae0f8ea9c6",
"type": "github"
},
"original": {

View File

@ -17,21 +17,21 @@ let
name = "make-docs";
help = "Execute the docs creating jobs and place the results in ./doc";
command = ''
nix build "$DEVSHELL_ROOT#jobs.${pkgs.system}.mkApiReferenceTopLevel" \
&& cp result "$DEVSHELL_ROOT/doc/api-reference.md" \
&& chmod 755 "$DEVSHELL_ROOT//doc/api-reference.md"
nix build "$DEVSHELL_ROOT#jobs.${pkgs.system}.mkApiReferenceChannels" \
&& cp result "$DEVSHELL_ROOT/doc/api-reference-channels.md" \
&& chmod 755 "$DEVSHELL_ROOT//doc/api-reference-channels.md"
nix build "$DEVSHELL_ROOT#jobs.${pkgs.system}.mkApiReferenceHome" \
&& cp result "$DEVSHELL_ROOT/doc/api-reference-home.md" \
&& chmod 755 "$DEVSHELL_ROOT//doc/api-reference-home.md"
nix build "$DEVSHELL_ROOT#jobs.${pkgs.system}.mkApiReferenceDevshell" \
&& cp result "$DEVSHELL_ROOT/doc/api-reference-devshell.md" \
&& chmod 755 "$DEVSHELL_ROOT//doc/api-reference-devshell.md"
nix build "$DEVSHELL_ROOT#jobs.${pkgs.system}.mkApiReferenceNixos" \
&& cp result "$DEVSHELL_ROOT/doc/api-reference-nixos.md" \
&& chmod 755 "$DEVSHELL_ROOT//doc/api-reference-nixos.md"
nix build "$PRJ_ROOT#jobs.${pkgs.system}.mkApiReferenceTopLevel" \
&& cp result "$PRJ_ROOT/doc/api-reference.md" \
&& chmod 755 "$PRJ_ROOT//doc/api-reference.md"
nix build "$PRJ_ROOT#jobs.${pkgs.system}.mkApiReferenceChannels" \
&& cp result "$PRJ_ROOT/doc/api-reference-channels.md" \
&& chmod 755 "$PRJ_ROOT//doc/api-reference-channels.md"
nix build "$PRJ_ROOT#jobs.${pkgs.system}.mkApiReferenceHome" \
&& cp result "$PRJ_ROOT/doc/api-reference-home.md" \
&& chmod 755 "$PRJ_ROOT//doc/api-reference-home.md"
nix build "$PRJ_ROOT#jobs.${pkgs.system}.mkApiReferenceDevshell" \
&& cp result "$PRJ_ROOT/doc/api-reference-devshell.md" \
&& chmod 755 "$PRJ_ROOT//doc/api-reference-devshell.md"
nix build "$PRJ_ROOT#jobs.${pkgs.system}.mkApiReferenceNixos" \
&& cp result "$PRJ_ROOT/doc/api-reference-nixos.md" \
&& chmod 755 "$PRJ_ROOT//doc/api-reference-nixos.md"
'';
};
@ -46,7 +46,7 @@ let
diggaurl=
lockfile_updated=1
lockfile_present=1
tempdigga="\"path:$DEVSHELL_ROOT\""
tempdigga="\"path:$PRJ_ROOT\""
cleanup() {
if is $lockfile_present; then
@ -77,7 +77,7 @@ let
# --------------------------------------------------------------------------------
cd $DEVSHELL_ROOT/${type}/${name}
cd $PRJ_ROOT/${type}/${name}
digga_fixture
@ -126,14 +126,14 @@ devshell.mkShell {
commands = [
(utils {
command = "git rm --ignore-unmatch -f $DEVSHELL_ROOT/{tests,examples}/*/flake.lock";
command = "git rm --ignore-unmatch -f $PRJ_ROOT/{tests,examples}/*/flake.lock";
help = "Remove all lock files";
name = "rm-locks";
})
(utils {
name = "fmt";
help = "Check Nix formatting";
command = "nixpkgs-fmt \${@} $DEVSHELL_ROOT";
command = "nixpkgs-fmt \${@} $PRJ_ROOT";
})
(utils {
name = "evalnix";