mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-12 02:40:31 +08:00
cde: drop
Unmaintained for 7 years and broken
(cherry picked from commit 8bc90bcf87)
This commit is contained in:
committed by
github-actions[bot]
parent
d21ae91816
commit
cfeb72ebc0
@@ -1,55 +0,0 @@
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
libxcrypt,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "cde";
|
||||
version = "0.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "usnistgov";
|
||||
repo = "corr-CDE";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-s375gtqBWx0GGXALXR+fN4bb3tmpvPNu/3bNz+75UWU=";
|
||||
};
|
||||
|
||||
# The build is small, so there should be no problem
|
||||
# running this locally. There is also a use case for
|
||||
# older systems, where modern binaries might not be
|
||||
# useful.
|
||||
preferLocalBuild = true;
|
||||
|
||||
buildInputs = [ libxcrypt ];
|
||||
|
||||
patchBuild = ''
|
||||
sed -i -e '/install/d' $src/Makefile
|
||||
'';
|
||||
|
||||
preBuild = ''
|
||||
patchShebangs .
|
||||
'';
|
||||
|
||||
# Workaround build failure on -fno-common toolchains like upstream
|
||||
# gcc-10. Otherwise build fails as:
|
||||
# ld: ../readelf-mini/libreadelf-mini.a(dwarf.o):/build/source/readelf-mini/dwarf.c:64:
|
||||
# multiple definition of `do_wide'; ../readelf-mini/libreadelf-mini.a(readelf-mini.o):/build/source/readelf-mini/readelf-mini.c:170: first defined here
|
||||
env.NIX_CFLAGS_COMPILE = "-fcommon";
|
||||
|
||||
installPhase = ''
|
||||
install -d $out/bin
|
||||
install -t $out/bin cde cde-exec
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/usnistgov/corr-CDE";
|
||||
description = "Packaging tool for building portable packages";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = [ maintainers.rlupton20 ];
|
||||
platforms = platforms.linux;
|
||||
# error: architecture aarch64 is not supported by bundled strace
|
||||
badPlatforms = [ "aarch64-linux" ];
|
||||
};
|
||||
}
|
||||
@@ -400,6 +400,7 @@ mapAliases {
|
||||
cassandra_3_0 = throw "'cassandra_3_0' has been removed has it reached end-of-life"; # Added 2025-03-23
|
||||
cassandra_3_11 = throw "'cassandra_3_11' has been removed has it reached end-of-life"; # Added 2025-03-23
|
||||
cawbird = throw "cawbird has been abandoned upstream and is broken anyways due to Twitter closing its API";
|
||||
cde = throw "'cde' has been removed as it is unmaintained and broken"; # Added 2025-05-17
|
||||
centerim = throw "centerim has been removed due to upstream disappearing"; # Added 2025-04-18
|
||||
certmgr-selfsigned = certmgr; # Added 2023-11-30
|
||||
cgal_4 = throw "cgal_4 has been removed as it is obsolete use cgal instead"; # Added 2024-12-30
|
||||
|
||||
Reference in New Issue
Block a user