blob: ac781ad81e56a5124845e88d2ff0b2870e869a02 (
plain) (
tree)
|
|
{ pkgs }:
self: super: {
xyz-euandreh = {
remembering-latest = pkgs.stdenv.mkDerivation rec {
name = "remembering";
version = "9c905a272b6fd85354b8b8aae739977a336c108f";
src = fetchTarball {
url =
"https://git.euandreh.xyz/${name}/snapshot/${name}-${version}.tar.gz";
sha256 = "1zf8ib5vsflzrlhzf0qjf45gqsvqzx22n38qn91chw98352rg21v";
};
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 = "b8515153fa2a9b57690b12c983d12c342cbf25c9";
src = fetchTarball {
url =
"https://git.euandreh.xyz/${name}/snapshot/${name}-${version}.tar.gz";
sha256 = "074ra6qmwn7gpj63khcjmnha3nrs8y1ma74ysqxis3kfcwk9p2im";
};
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.3.0";
src = fetchTarball {
url =
"https://git.euandreh.xyz/${name}/snapshot/${name}-${version}.tar.gz";
sha256 = "0nsmy3bvim9pf78c5dcmbp81wks87wma62srgc7i2yc9phvqpjfh";
};
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;
};
};
};
}
|