blob: 5c1be8987c7eecc0b9c8b246b6c1b5c2006b20e0 (
plain) (
tree)
|
|
{ pkgs }:
self: super: {
xyz-euandreh = {
remembering = pkgs.stdenv.mkDerivation rec {
name = "remembering";
version = "793b782617b0667eefa938a836f24d8a5e087bb0";
src = fetchTarball {
url =
"https://git.euandreh.xyz/${name}/snapshot/${name}-${version}.tar.gz";
sha256 = "0sr5ggyrqy95jalycmwj4x8prrgrsak1s7wsyxslvj9w38rckdrd";
};
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;
};
};
};
}
|