blob: a805ee81edf9222b5077832a4c1f9af7f12375a5 (
plain) (
tree)
|
|
{ pkgs }:
self: super: {
xyz-euandreh = {
td-latest = pkgs.stdenv.mkDerivation rec {
name = "td";
version = "90f2352c78b921c50f4c8547baa609c272248c30";
src = fetchTarball {
url =
"https://euandreh.xyz/${name}.git/snapshot/${name}-${version}.tar.gz";
sha256 = "0r5jx6gjmh7wr3hicd16ih9qap3zhd2sjh573apx84baqg5w420w";
};
makeFlags = [ "CC=cc" "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";
license = licenses.agpl3;
platforms = platforms.unix;
};
};
};
}
|