diff --git a/examples/php_composer/flake.nix b/examples/php_composer/flake.nix new file mode 100644 index 0000000000..0b86c75f52 --- /dev/null +++ b/examples/php_composer/flake.nix @@ -0,0 +1,22 @@ +{ + inputs = { + dream2nix.url = "github:nix-community/dream2nix"; + src.url = "github:composer/composer"; + src.flake = false; + }; + + outputs = { + self, + dream2nix, + src, + } @ inp: + (dream2nix.lib.makeFlakeOutputs { + systems = ["x86_64-linux"]; + config.projectRoot = ./.; + source = src; + settings = []; + }) + // { + checks = self.packages; + }; +}