mirror of
https://github.com/natsukagami/youmubot.git
synced 2025-05-24 01:00:49 +00:00
Pull info from an attached .osu/.osz file (#18)
This commit is contained in:
parent
acc0e339a0
commit
2e3c6f61be
10 changed files with 631 additions and 125 deletions
23
flake.nix
23
flake.nix
|
@ -34,16 +34,21 @@
|
|||
defaultApp = apps.youmubot;
|
||||
|
||||
# `nix develop`
|
||||
devShell = pkgs.mkShell {
|
||||
nativeBuildInputs =
|
||||
(with pkgs; [ rustc cargo rust-analyzer rustfmt ]) ++
|
||||
nixpkgs.lib.optionals (nixpkgs.lib.strings.hasSuffix "darwin" system) (with pkgs; [
|
||||
libiconv
|
||||
darwin.apple_sdk.frameworks.Security
|
||||
]);
|
||||
};
|
||||
|
||||
devShell = pkgs.mkShell
|
||||
{
|
||||
nativeBuildInputs =
|
||||
(with pkgs; [ rustc cargo rust-analyzer rustfmt ])
|
||||
++ nixpkgs.lib.optionals (nixpkgs.lib.strings.hasSuffix "darwin" system) (with pkgs; [
|
||||
libiconv
|
||||
darwin.apple_sdk.frameworks.Security
|
||||
])
|
||||
++ nixpkgs.lib.optionals (nixpkgs.lib.strings.hasSuffix "linux" system) (with pkgs; [
|
||||
pkg-config
|
||||
openssl
|
||||
]);
|
||||
};
|
||||
# module
|
||||
nixosModule = import ./module.nix defaultPackage;
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue