diff options
author | EuAndreh <eu@euandre.org> | 2022-01-19 17:18:29 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-01-19 17:18:29 -0300 |
commit | 13e2a186fea86320b8d2732fffa92e7244adf9e3 (patch) | |
tree | 02389fd220c7d0fdb5efaa7a3b572077264c70b4 | |
parent | default.nix: Remove unused CC flag (diff) | |
download | package-repository-13e2a186fea86320b8d2732fffa92e7244adf9e3.tar.gz package-repository-13e2a186fea86320b8d2732fffa92e7244adf9e3.tar.xz |
scripts/paku: Fix links to project homepages
-rwxr-xr-x | scripts/paku | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/paku b/scripts/paku index e60812a..7877b2b 100755 --- a/scripts/paku +++ b/scripts/paku @@ -78,7 +78,7 @@ EOF (delete 'configure)))) (synopsis (file-append source "/description")) (description (file-append source "/long-description")) - (home-page (string-append "https://" name ".euandreh.xyz")) + (home-page (string-append "https://euandreh.xyz/" name "/")) (license license:agpl3+))) EOF done @@ -142,9 +142,9 @@ $CHECK_INPUTS meta = with pkgs.lib; { description = readFile "\${src}/description"; longDescription = readFile "\${src}/long-description"; - homepage = "https://\${name}.euandreh.xyz"; - changelog = "https://\${name}.euandreh.xyz/CHANGELOG.html"; - downloadPage = "https://\${name}.euandreh.xyz/#releases"; + homepage = "https://euandreh.xyz/\${name}/"; + changelog = "https://euandreh.xyz/\${name}/CHANGELOG.html"; + downloadPage = "https://euandreh.xyz/\${name}/#releases"; license = licenses.agpl3; platforms = platforms.unix; }; @@ -203,7 +203,7 @@ gen_homebrew() { cat <<EOF >>"$HOMEBREW_OUT" class ${NAME_UC}$SUFFIX_UC < Formula desc '$DESCRIPTION' - homepage 'https://$NAME.euandreh.xyz' + homepage 'https://euandreh.xyz/$NAME/' url '$TARBALL_URL' sha256 '$SHA256' license 'AGPL-3.0-or-later' |