flake.nix: build packages with clang
This commit is contained in:
@@ -25,13 +25,19 @@
|
||||
};
|
||||
in {
|
||||
default = self.packages.${system}.wamf;
|
||||
wamf = pkgs.callPackage ./nix/package.nix { inherit src; };
|
||||
wamf = pkgs.callPackage ./nix/package.nix {
|
||||
inherit src;
|
||||
stdenv = pkgs.clangStdenv;
|
||||
};
|
||||
wamf-freebsd-cross = let
|
||||
pkgs = import nixpkgs {
|
||||
localSystem = system;
|
||||
crossSystem = "x86_64-freebsd";
|
||||
};
|
||||
in pkgs.callPackage ./nix/package.nix { inherit src; };
|
||||
in pkgs.callPackage ./nix/package.nix {
|
||||
inherit src;
|
||||
stdenv = pkgs.clangStdenv;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user