mirror of
https://codeberg.org/icewind/mitemp-rs.git
synced 2026-06-03 09:14:07 +02:00
14 lines
365 B
Nix
14 lines
365 B
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "nixpkgs/nixos-25.11";
|
|
flakelight = {
|
|
url = "github:nix-community/flakelight";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
mill-scale = {
|
|
url = "git+https://codeberg.org/icewind/mill-scale.git";
|
|
inputs.flakelight.follows = "flakelight";
|
|
};
|
|
};
|
|
outputs = {mill-scale, ...}: mill-scale ./. {};
|
|
}
|