Skip to content

Commit

Permalink
ci: add missing package to nixOS docker
Browse files Browse the repository at this point in the history
  • Loading branch information
edouard-lopez committed Aug 30, 2023
1 parent d01722f commit 65a68ed
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions nix.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 13,13 @@ SHELL [ "/root/.nix-profile/bin/fish", "-c" ]
RUN fish --version
# hadolint ignore=DL3059,SC1008
RUN nix-build '<nixpkgs>' -A fishPlugins.pure \
&& nix-env -iA nixpkgs.vim \
&& nix-env -iA nixpkgs.fishPlugins.fishtape_3
&& nix-env -iA \
nixpkgs.vim \
nixpkgs.diffutils \
nixpkgs.curlMinimal \
nixpkgs.gnused \
nixpkgs.gawk \
nixpkgs.fishPlugins.fishtape_3
# hadolint ignore=SC1008
COPY configuration.nix /etc/nixos/configuration.nix
# hadolint ignore=SC1008
Expand All @@ -23,8 28,7 @@ RUN mkdir -p /root/.config/fish/functions/ \
/nix/store/*-user-environment/share/fish/vendor_functions.d/fishtape.fish \
/root/.config/fish/functions/
# hadolint ignore=SC1008
RUN nix \
build \
RUN nix build \
github:NixOS/nixpkgs/6573f71#fishPlugins.pure \
--print-build-logs \
|| true
Expand Down

0 comments on commit 65a68ed

Please sign in to comment.