Skip to content

Commit

Permalink
Merge pull request #516 from saschagrunert/nix-gitignore
Browse files Browse the repository at this point in the history
Use `.gitignore` in nix build excludes
  • Loading branch information
rhatdan authored Sep 9, 2024
2 parents d056663 + fd3e37b commit 0c123a6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion nix/derivation.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
}:
with pkgs; stdenv.mkDerivation rec {
name = "conmon";
src = ./..;
# Use Pure to avoid exuding the .git directory
src = nix-gitignore.gitignoreSourcePure [ ../.gitignore ] ./..;
vendorHash = null;
doCheck = false;
enableParallelBuilding = true;
Expand Down

3 comments on commit 0c123a6

@packit-as-a-service
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Your git-forge project is not allowed to use the configured rhcontainerbot/podman-next Copr project.

Please, add this git-forge project github.com/containers/conmon to Packit allowed forge projectsin the Copr project settings.

@packit-as-a-service
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Your git-forge project is not allowed to use the configured rhcontainerbot/podman-next Copr project.

Please, add this git-forge project github.com/containers/conmon to Packit allowed forge projectsin the Copr project settings.

@packit-as-a-service
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Your git-forge project is not allowed to use the configured rhcontainerbot/podman-next Copr project.

Please, add this git-forge project github.com/containers/conmon to Packit allowed forge projectsin the Copr project settings.

Please sign in to comment.