diff options
Diffstat (limited to 'scripts/paku')
-rwxr-xr-x | scripts/paku | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/paku b/scripts/paku index dd56066..73fd7ec 100755 --- a/scripts/paku +++ b/scripts/paku @@ -64,7 +64,7 @@ EOF (source (origin (method url-fetch) (uri (string-append - "https://git.euandreh.xyz/$NAME/snapshot/$NAME-" + "https://euandreh.xyz/$NAME.git/snapshot/$NAME-" version ".tar.gz")) (sha256 @@ -132,7 +132,7 @@ EOF src = fetchTarball { url = - "https://git.euandreh.xyz/\${name}/snapshot/\${name}-\${version}.tar.gz"; + "https://euandreh.xyz/\${name}.git/snapshot/\${name}-\${version}.tar.gz"; sha256 = "$SHA256"; }; @@ -347,7 +347,7 @@ EOF <pre></code>nixpkgs = { overlays = [ (import (fetchTarball { - url = "https://git.euandreh.xyz/package-repository/snapshot/package-repository-main.tar.gz"; + url = "https://euandreh.xyz/package-repository.git/snapshot/package-repository-main.tar.gz"; }) { inherit pkgs; }) ]; };</code></pre> |