mirror of
https://github.com/9001/copyparty.git
synced 2025-08-17 09:02:15 -06:00
nix: add flake check that makes sure it builds with all flags
Because sometimes an import might be missing, and if it is an optional then you'll only figure out that it's broken if you set the flag.
This commit is contained in:
parent
6599f6da7e
commit
4f1ca5c480
13
flake.nix
13
flake.nix
|
@ -38,6 +38,19 @@
|
|||
};
|
||||
in
|
||||
{
|
||||
# check that copyparty builds with all optionals turned on
|
||||
checks.copyparty-full = self.packages.${system}.copyparty.override {
|
||||
withHashedPasswords = true;
|
||||
withCertgen = true;
|
||||
withThumbnails = true;
|
||||
withFastThumbnails = true;
|
||||
withMediaProcessing = true;
|
||||
withBasicAudioMetadata = true;
|
||||
withZeroMQ = true;
|
||||
withFTPS = true;
|
||||
withSMB = true;
|
||||
};
|
||||
|
||||
packages = {
|
||||
inherit (pkgs)
|
||||
copyparty
|
||||
|
|
Loading…
Reference in a new issue