tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
antora-ui-default: deprecate phases
Felix Buehler
6 months ago
7e89dbf2
3fe22110
+1
-3
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
an
antora-ui-default
package.nix
+1
-3
pkgs/by-name/an/antora-ui-default/package.nix
···
40
40
# [3]: https://gitlab.com/trueNAHO/antora-ui-default/-/commit/11f563294248e9b64124b9289d639e349f2e9f5f
41
41
src = fetchFromGitLab srcFetchFromGitLab;
42
42
43
43
-
phases = [ "installPhase" ];
44
44
-
45
43
# Install '$src/ui-bundle.zip' to '$out/ui-bundle.zip' instead of '$out' to
46
44
# prevent the ZIP from being misidentified as a binary [1].
47
45
#
48
46
# [1]: https://github.com/NixOS/nixpkgs/blob/8885a1e21ad43f8031c738a08029cd1d4dcbc2f7/pkgs/stdenv/generic/setup.sh#L792-L795
49
49
-
installPhase = ''
47
47
+
buildCommand = ''
50
48
mkdir --parents "$out"
51
49
cp "$src/ui-bundle.zip" "$out"
52
50
'';