diff --git a/README.md b/README.md index 9b5a6d40..829c161a 100644 --- a/README.md +++ b/README.md @@ -44,6 +44,7 @@ This is the monorepo for the new .owmods-`, or use the overlay, for example: + ```nix nixpkgs.overlays = [ inputs.ow-mod-man.overlays.default ] ``` ## Without flakes + If you can't or don't want to use flakes, you can use [flake-compat](https://github.com/edolstra/flake-compat). ```nix @@ -30,5 +34,4 @@ let }; ow-mod-man = (flake-compat { inherit src; }).defaultNix; in ow-mod-man.packages..owmods- - -``` \ No newline at end of file +``` diff --git a/nix/owmods-cli.nix b/nix/owmods-cli.nix index 1a799fec..1135cd52 100644 --- a/nix/owmods-cli.nix +++ b/nix/owmods-cli.nix @@ -33,10 +33,12 @@ rustPlatform.buildRustPackage rec { lockFile = ../Cargo.lock; }; - nativeBuildInputs = [ - pkg-config - installShellFiles - ] ++ lib.optional wrapWithMono makeWrapper; + nativeBuildInputs = + [ + pkg-config + installShellFiles + ] + ++ lib.optional wrapWithMono makeWrapper; buildInputs = [ openssl @@ -60,6 +62,6 @@ rustPlatform.buildRustPackage rec { changelog = "https://github.com/ow-mods/ow-mod-man/releases/tag/cli_v${version}"; mainProgram = "owmods"; license = licenses.gpl3; - maintainers = with maintainers; [locochoco]; + maintainers = with maintainers; [bwc9876 locochoco]; }; } diff --git a/nix/owmods-gui.nix b/nix/owmods-gui.nix index a82b74e4..a2ab1d3e 100644 --- a/nix/owmods-gui.nix +++ b/nix/owmods-gui.nix @@ -100,6 +100,6 @@ rustPlatform.buildRustPackage rec { mainProgram = "outer-wilds-mod-manager"; platforms = platforms.linux; license = licenses.gpl3; - maintainers = with maintainers; [locochoco]; + maintainers = with maintainers; [bwc9876 locochoco]; }; }