diff options
author | EuAndreh <eu@euandre.org> | 2022-01-21 00:16:33 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-01-21 00:19:29 -0300 |
commit | 74cc538fae906f3c85d059e839480a0b22ba5d56 (patch) | |
tree | ccf47da5c90eb09441a60da5b61e0d548a147433 /default.nix | |
parent | aux/: Update (diff) | |
download | package-repository-74cc538fae906f3c85d059e839480a0b22ba5d56.tar.gz package-repository-74cc538fae906f3c85d059e839480a0b22ba5d56.tar.xz |
paku.json: Remove dependency on m4
Diffstat (limited to '')
-rw-r--r-- | default.nix | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/default.nix b/default.nix index 7de8e4f..eeb89ba 100644 --- a/default.nix +++ b/default.nix @@ -3,25 +3,24 @@ self: super: { xyz-euandreh = { td-latest = pkgs.stdenv.mkDerivation rec { name = "td"; - version = "90f2352c78b921c50f4c8547baa609c272248c30"; + version = "c9d881f67918c6b098d868e0df6c8837632d0d93"; src = fetchTarball { url = "https://euandreh.xyz/${name}.git/snapshot/${name}-${version}.tar.gz"; - sha256 = "0r5jx6gjmh7wr3hicd16ih9qap3zhd2sjh573apx84baqg5w420w"; + sha256 = "0cbppagm41jk5cbyjsp49q11dkw96r2h90ja6h0zh3dadl0wfm4d"; }; makeFlags = [ "PREFIX=$(out)" ]; - checkInputs = with pkgs; [ m4 ]; doCheck = true; 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; }; |