mirror of
https://github.com/nix-community/dream2nix.git
synced 2024-11-27 14:51:15 +03:00
e8fe3f803f
Apply naming scheme {subsystem}_{test-name}
28 lines
542 B
Nix
28 lines
542 B
Nix
{
|
|
inputs = {
|
|
dream2nix.url = "github:nix-community/dream2nix";
|
|
src.url = "github:BurntSushi/ripgrep/13.0.0";
|
|
src.flake = false;
|
|
};
|
|
|
|
outputs = {
|
|
self,
|
|
dream2nix,
|
|
src,
|
|
} @ inp:
|
|
(dream2nix.lib.makeFlakeOutputs {
|
|
systems = ["x86_64-linux"];
|
|
config.projectRoot = ./.;
|
|
source = src;
|
|
settings = [
|
|
{
|
|
builder = "crane";
|
|
translator = "cargo-lock";
|
|
}
|
|
];
|
|
})
|
|
// {
|
|
checks.x86_64-linux.ripgrep = self.packages.x86_64-linux.ripgrep;
|
|
};
|
|
}
|