dgsh: remove

notice dgsh removal
This commit is contained in:
Sigmanificient 2024-05-09 19:56:14 +02:00
parent accf9337b3
commit ad1cc3a045
4 changed files with 1 additions and 62 deletions

View File

@ -1,48 +0,0 @@
{ lib, stdenv, fetchFromGitHub, autoconf, automake, pkg-config,
libtool, check, bison, git, gperf,
perl, texinfo, help2man, gettext, ncurses
}:
stdenv.mkDerivation {
pname = "dgsh-unstable";
version = "2017-02-05";
src = fetchFromGitHub {
owner = "dspinellis";
repo = "dgsh";
rev = "bc4fc2e8009c069ee4df5140c32a2fc15d0acdec";
sha256 = "0k3hmnarz56wphw45mabn5zcc427l5p77jldh1qqy89pxqy1wnql";
fetchSubmodules = true;
};
patches = [ ./glibc-2.26.patch ];
nativeBuildInputs = [ autoconf automake pkg-config libtool check
bison git gettext gperf perl texinfo help2man ncurses
];
configurePhase = ''
cp -r ./unix-tools/coreutils/gnulib gnulib
perl -pi -e \
's#./bootstrap #./bootstrap --no-bootstrap-sync --skip-po --no-git --gnulib-srcdir='$PWD/gnulib' #g' \
unix-tools/Makefile
find . -name \*.diff | xargs rm -f
rm -rf unix-tools/*/gnulib
patchShebangs unix-tools/diffutils/man/help2man
export RSYNC=true # set to rsync binary, eventhough it is not used.
make PREFIX=$out config
'';
enableParallelBuilding = true;
meta = with lib; {
description = "The Directed Graph Shell";
homepage = "http://www.dmst.aueb.gr/dds/sw/dgsh";
license = with licenses; asl20;
maintainers = with maintainers; [ vrthra ];
platforms = with platforms; all;
# lib/freadseek.c:68:3: error: #error "Please port gnulib freadseek.c to your platform! Look at the definition of getc, getc_unlocked on your >
# 68 | #error "Please port gnulib freadseek.c to your platform! Look at the definition of getc, getc_unlocked on your system, then report >
broken = true; # marked 2022-05-06
};
}

View File

@ -1,12 +0,0 @@
diff --git a/core-tools/src/dgsh-httpval.c b/core-tools/src/dgsh-httpval.c
index 8b5dce3..7b43c3d 100644
--- a/core-tools/src/dgsh-httpval.c
+++ b/core-tools/src/dgsh-httpval.c
@@ -40,6 +40,7 @@
#include <sys/stat.h>
#include <unistd.h>
#include <stdlib.h>
+#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <ctype.h>

View File

@ -249,6 +249,7 @@ mapAliases ({
dep = throw "'dep' has been removed, because it is deprecated and archived in favor of Go modules"; # Added 2023-12-26
devserver = throw "'devserver' has been removed in favor of 'miniserve' or other alternatives"; # Added 2023-01-13
dfeet = throw "'dfeet' has been removed because it is archived upstream. Please use 'd-spy' instead"; # Added 2024-03-07
dgsh = throw "'dgsh' has been removed, as it was broken and unmaintained"; # added 2024-05-09
dhcp = throw "dhcp (ISC DHCP) has been removed from nixpkgs, because it reached its end of life"; # Added 2023-04-04
dibbler = throw "dibbler was removed because it is not maintained anymore"; # Added 2024-05-14
dnnl = oneDNN; # Added 2020-04-22

View File

@ -3668,8 +3668,6 @@ with pkgs;
djmount = callPackage ../tools/filesystems/djmount { };
dgsh = callPackage ../shells/dgsh { };
dkimpy = with python3Packages; toPythonApplication dkimpy;
dl-librescore = callPackage ../tools/audio/dl-librescore { };