blob: cf4a959db64672667fd29e9e983a45fa656d2760 (
plain) (
tree)
|
|
{ pkgs }:
self: super: {
xyz-euandreh = {
remembering-latest = pkgs.stdenv.mkDerivation rec {
name = "remembering";
version = "8d8307e8a5d7570c1373717963895c0506e7e098";
src = fetchTarball {
url =
"https://git.euandreh.xyz/${name}/snapshot/${name}-${version}.tar.gz";
sha256 = "0w4nd30gnhm65zi83vx0b10jjbp60gcwj5z95416zqhrm038fbxp";
};
makeFlags = [ "CC=cc" "PREFIX=$(out)" ];
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;
};
};
remembering = pkgs.stdenv.mkDerivation rec {
name = "remembering";
version = "0.2.1";
src = fetchTarball {
url =
"https://git.euandreh.xyz/${name}/snapshot/${name}-${version}.tar.gz";
sha256 = "15lxlhxllgmw1ampf36g4sr1gfd6vr257l4jw0z5457z2jvis9yg";
};
makeFlags = [ "CC=cc" "PREFIX=$(out)" ];
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-latest = pkgs.stdenv.mkDerivation rec {
name = "autoqemu";
version = "5f619467601a7ff2af973c4fd80d22fe77f6123b";
src = fetchTarball {
url =
"https://git.euandreh.xyz/${name}/snapshot/${name}-${version}.tar.gz";
sha256 = "1fyq5gbf6ky7qadyw9zi5bwgqgv4c1n4s42qdbp4gbfz978clsfj";
};
makeFlags = [ "CC=cc" "PREFIX=$(out)" ];
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-latest = pkgs.stdenv.mkDerivation rec {
name = "fallible";
version = "ec0e6dc32fcb7e227cdcbfb0ba19c28ce0aec515";
src = fetchTarball {
url =
"https://git.euandreh.xyz/${name}/snapshot/${name}-${version}.tar.gz";
sha256 = "1bbqwa7a9766p6piggg6gc3k19qpznz2cyirygjszb7dbr9z011a";
};
makeFlags = [ "CC=cc" "PREFIX=$(out)" ];
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;
};
};
fallible = pkgs.stdenv.mkDerivation rec {
name = "fallible";
version = "0.2.1";
src = fetchTarball {
url =
"https://git.euandreh.xyz/${name}/snapshot/${name}-${version}.tar.gz";
sha256 = "14pin8fdjwhr4wpbfhmcmz46y6z4ail39c6z8b514x0wab19j9j8";
};
makeFlags = [ "CC=cc" "PREFIX=$(out)" ];
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;
};
};
};
}
|