antora-ui-default: deprecate phases (#433193)

authored by

Felix Bühler and committed by
GitHub
cca4db80 25cc8cb8

+1 -3
+1 -3
pkgs/by-name/an/antora-ui-default/package.nix
··· 40 # [3]: https://gitlab.com/trueNAHO/antora-ui-default/-/commit/11f563294248e9b64124b9289d639e349f2e9f5f 41 src = fetchFromGitLab srcFetchFromGitLab; 42 43 - phases = [ "installPhase" ]; 44 - 45 # Install '$src/ui-bundle.zip' to '$out/ui-bundle.zip' instead of '$out' to 46 # prevent the ZIP from being misidentified as a binary [1]. 47 # 48 # [1]: https://github.com/NixOS/nixpkgs/blob/8885a1e21ad43f8031c738a08029cd1d4dcbc2f7/pkgs/stdenv/generic/setup.sh#L792-L795 49 - installPhase = '' 50 mkdir --parents "$out" 51 cp "$src/ui-bundle.zip" "$out" 52 '';
··· 40 # [3]: https://gitlab.com/trueNAHO/antora-ui-default/-/commit/11f563294248e9b64124b9289d639e349f2e9f5f 41 src = fetchFromGitLab srcFetchFromGitLab; 42 43 # Install '$src/ui-bundle.zip' to '$out/ui-bundle.zip' instead of '$out' to 44 # prevent the ZIP from being misidentified as a binary [1]. 45 # 46 # [1]: https://github.com/NixOS/nixpkgs/blob/8885a1e21ad43f8031c738a08029cd1d4dcbc2f7/pkgs/stdenv/generic/setup.sh#L792-L795 47 + buildCommand = '' 48 mkdir --parents "$out" 49 cp "$src/ui-bundle.zip" "$out" 50 '';