{ pkgs }: self: super: { xyz-euandreh = { remembering = pkgs.stdenv.mkDerivation rec { name = "remembering"; version = "98b1db6e8e5a6baf26e55671dee9fc9b5df7b84e"; src = fetchTarball { url = "https://git.euandreh.xyz/${name}/snapshot/${name}-${version}.tar.gz"; sha256 = "0f68ygrzz2fp481cxlnwa0zrh55kwahwgsis8vnssxam5chzpb51"; }; makeFlags = [ "CC=cc" ]; 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; }; }; autoqemu = pkgs.stdenv.mkDerivation rec { name = "autoqemu"; version = "4d1a0b6314c4f6fcf31f80e608f6b03a316a7255"; src = fetchTarball { url = "https://git.euandreh.xyz/${name}/snapshot/${name}-${version}.tar.gz"; sha256 = "1viq6vv79lkgr2a1kiz4gk5x5kxxjzfbf67lnc22ksyfbayvd788"; }; makeFlags = [ "CC=cc" ]; 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; }; }; fallible = pkgs.stdenv.mkDerivation rec { name = "fallible"; version = "66a2ee41beaaffb9a9a6b521837c0967528845fa"; src = fetchTarball { url = "https://git.euandreh.xyz/${name}/snapshot/${name}-${version}.tar.gz"; sha256 = "0mws8k6gylsrph841c1q40a9zbw5wn1p2hxl16waymgwn80bl1bq"; }; makeFlags = [ "CC=cc" ]; checkInputs = with pkgs; [ valgrind ]; 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; }; }; }; }