Compare commits

...

No commits in common. "930a3007e0a252c747dc53108a062eb5c49de080" and "cb7785a2b45d5aebf40ec55f0acd82751074399d" have entirely different histories.

1 changed files with 74 additions and 79 deletions

View File

@ -10,7 +10,8 @@
naersk.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = { self, nixpkgs, rust-overlay, flake-utils, naersk }: flake-utils.lib.eachDefaultSystem (system: let
outputs = { self, nixpkgs, rust-overlay, flake-utils, naersk }: flake-utils.lib.eachDefaultSystem (system:
let
overlays = [
rust-overlay.overlay
(final: prev: {
@ -94,12 +95,6 @@
then {
backend = packages.backend;
frontend = packages.frontend;
hydra-product = pkgs.runCommandNoCC "hydra-product" { } ''
cp -rs ${defaultPackage} $out
chmod +w $out
mkdir -p $out/nix-support
echo "doc app $out/index.html" >> $out/nix-support/hydra-build-products
'';
}
else { };
});