blob: d5967ccdc9359311442392d87937f0c45bfc4e19 (
plain) (
tree)
|
|
{ pkgs }:
self: super: {
xyz-euandreh = {
remembering-latest = pkgs.stdenv.mkDerivation rec {
name = "remembering";
version = "5476f9fab45efd3996d50d8b9a1ff4e825d93f44";
src = fetchTarball {
url =
"https://git.euandreh.xyz/${name}/snapshot/${name}-${version}.tar.gz";
sha256 = "1lvljc6y9q73qs2ykwv147w795kmy1m9dm9dfj5p42n6i9vqa7vy";
};
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 = "e676c0baedc09f34fbd07877dc3ab47e9427a221";
src = fetchTarball {
url =
"https://git.euandreh.xyz/${name}/snapshot/${name}-${version}.tar.gz";
sha256 = "0iidxpdn855h12ybnxwizbbsmgz6123xpim86gc722w3f2yb8ck7";
};
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 = "76c74b3cf29bf9e7c62b328c2bcdcff534e5b663";
src = fetchTarball {
url =
"https://git.euandreh.xyz/${name}/snapshot/${name}-${version}.tar.gz";
sha256 = "0jzc2m0m3a684zz82mxw7lgykczkkvm9gi87nar6fqmci7zwyxyb";
};
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;
};
};
};
}
|