diff options
Diffstat (limited to 'scripts/paku')
-rwxr-xr-x | scripts/paku | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/paku b/scripts/paku index 7877b2b..5d4dd6b 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://euandreh.xyz/" name "/")) + (home-page "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://euandreh.xyz/\${name}/"; - changelog = "https://euandreh.xyz/\${name}/CHANGELOG.html"; - downloadPage = "https://euandreh.xyz/\${name}/#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; }; |