mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 20:55:31 +03:00
gmnisrv: drop (#414761)
This commit is contained in:
commit
cad9734b03
2 changed files with 1 additions and 52 deletions
|
@ -1,52 +0,0 @@
|
||||||
{
|
|
||||||
stdenv,
|
|
||||||
lib,
|
|
||||||
fetchFromSourcehut,
|
|
||||||
pkg-config,
|
|
||||||
openssl,
|
|
||||||
mailcap,
|
|
||||||
scdoc,
|
|
||||||
}:
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
|
||||||
pname = "gmnisrv";
|
|
||||||
version = "1.0";
|
|
||||||
|
|
||||||
src = fetchFromSourcehut {
|
|
||||||
owner = "~sircmpwn";
|
|
||||||
repo = "gmnisrv";
|
|
||||||
rev = version;
|
|
||||||
sha256 = "sha256-V9HXXYQIo3zeqZjJEn+dhemNg6AU+ee3FRmBmXgLuYQ=";
|
|
||||||
};
|
|
||||||
|
|
||||||
env.NIX_CFLAGS_COMPILE = toString [
|
|
||||||
"-Wno-error=deprecated-declarations"
|
|
||||||
];
|
|
||||||
|
|
||||||
postPatch = ''
|
|
||||||
substituteInPlace config.sh \
|
|
||||||
--replace "pkg-config" "${stdenv.cc.targetPrefix}pkg-config"
|
|
||||||
'';
|
|
||||||
|
|
||||||
MIMEDB = "${mailcap}/etc/mime.types";
|
|
||||||
nativeBuildInputs = [
|
|
||||||
pkg-config
|
|
||||||
scdoc
|
|
||||||
];
|
|
||||||
buildInputs = [
|
|
||||||
openssl
|
|
||||||
mailcap
|
|
||||||
];
|
|
||||||
|
|
||||||
meta = with lib; {
|
|
||||||
description = "Simple Gemini protocol server";
|
|
||||||
mainProgram = "gmnisrv";
|
|
||||||
homepage = "https://git.sr.ht/~sircmpwn/gmnisrv";
|
|
||||||
license = licenses.gpl3Only;
|
|
||||||
maintainers = with maintainers; [
|
|
||||||
bsima
|
|
||||||
jb55
|
|
||||||
];
|
|
||||||
platforms = platforms.linux;
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -786,6 +786,7 @@ mapAliases {
|
||||||
glfw-wayland-minecraft = glfw3-minecraft; # Added 2024-05-08
|
glfw-wayland-minecraft = glfw3-minecraft; # Added 2024-05-08
|
||||||
glxinfo = mesa-demos; # Added 2024-07-04
|
glxinfo = mesa-demos; # Added 2024-07-04
|
||||||
gmailieer = throw "'gmailieer' has been renamed to/replaced by 'lieer'"; # Converted to throw 2024-10-17
|
gmailieer = throw "'gmailieer' has been renamed to/replaced by 'lieer'"; # Converted to throw 2024-10-17
|
||||||
|
gmnisrv = throw "'gmnisrv' has been removed due to lack of maintenance upstream"; # Added 2025-06-07
|
||||||
gmp4 = throw "'gmp4' is end-of-life, consider using 'gmp' instead"; # Added 2024-12-24
|
gmp4 = throw "'gmp4' is end-of-life, consider using 'gmp' instead"; # Added 2024-12-24
|
||||||
gnatboot11 = gnat-bootstrap11;
|
gnatboot11 = gnat-bootstrap11;
|
||||||
gnatboot12 = gnat-bootstrap12;
|
gnatboot12 = gnat-bootstrap12;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue