2022-11-29 01:37:36 -05:00
|
|
|
{
|
2023-05-15 16:38:07 -04:00
|
|
|
inputs = { rust = { url = "git+https://git.stranger.systems/nix/Rust"; }; };
|
|
|
|
description = "Java Flake Updater";
|
2022-11-29 01:37:36 -05:00
|
|
|
|
2023-05-15 16:38:07 -04:00
|
|
|
outputs = { self, nixpkgs, rust }:
|
|
|
|
rust.single {
|
|
|
|
crateName = "updater";
|
|
|
|
src = ./.;
|
2022-11-29 01:37:36 -05:00
|
|
|
};
|
|
|
|
}
|