mirror of
https://github.com/nix-community/dream2nix.git
synced 2024-11-23 17:20:31 +03:00
e8fe3f803f
Apply naming scheme {subsystem}_{test-name}
22 lines
428 B
Nix
22 lines
428 B
Nix
{
|
|
inputs = {
|
|
dream2nix.url = "github:nix-community/dream2nix";
|
|
src.url = "github:prettier/prettier/2.4.1";
|
|
src.flake = false;
|
|
};
|
|
|
|
outputs = {
|
|
self,
|
|
dream2nix,
|
|
src,
|
|
} @ inp:
|
|
(dream2nix.lib.makeFlakeOutputs {
|
|
systems = ["x86_64-linux"];
|
|
config.projectRoot = ./.;
|
|
source = src;
|
|
})
|
|
// {
|
|
checks.x86_64-linux.prettier = self.packages.x86_64-linux.prettier;
|
|
};
|
|
}
|