nodePackages.makam: drop

This commit is contained in:
dish
2025-11-14 00:09:49 -05:00
parent fd06146678
commit 43f458b0e2
4 changed files with 1 additions and 27 deletions
@@ -218,6 +218,7 @@ mapAliases {
lodash = throw "lodash was removed because it provides no executable"; # added 2025-03-18
lua-fmt = throw "'lua-fmt' has been removed because it has critical bugs that break formatting"; # Added 2025-11-07
inherit (pkgs) lv_font_conv; # added 2024-06-28
makam = throw "'makam' has been removed because it is unmaintained upstream"; # Added 2025-11-14
manta = pkgs.node-manta; # Added 2023-05-06
inherit (pkgs) markdown-link-check; # added 2024-06-28
markdownlint-cli = pkgs.markdownlint-cli; # added 2023-07-29
@@ -27,7 +27,6 @@
, "fkill-cli"
, "forever"
, "grunt-cli"
, "makam"
, "gulp-cli"
, "he"
, "hs-airdrop"
-18
View File
@@ -31909,24 +31909,6 @@ in
bypassCache = true;
reconstructLock = true;
};
makam = nodeEnv.buildNodePackage {
name = "makam";
packageName = "makam";
version = "0.7.40";
src = fetchurl {
url = "https://registry.npmjs.org/makam/-/makam-0.7.40.tgz";
sha512 = "EfuAPhLvKuN2ruOqyDpG8epeaDzAKg/6K5BgaDMaivJ9+DC84eI7PsluBYe01cuEJGaOoQCtO2mGKwMy7o2DNw==";
};
buildInputs = globalBuildInputs;
meta = {
description = "The Makam metalanguage -- a tool for rapid language prototyping";
homepage = "http://astampoulis.github.io/makam/";
license = "GPL-3.0";
};
production = true;
bypassCache = true;
reconstructLock = true;
};
gulp-cli = nodeEnv.buildNodePackage {
name = "gulp-cli";
packageName = "gulp-cli";
@@ -51,14 +51,6 @@ final: prev: {
'';
};
makam = prev.makam.override {
nativeBuildInputs = [ pkgs.buildPackages.makeWrapper ];
postFixup = ''
wrapProgram "$out/bin/makam" --prefix PATH : ${lib.makeBinPath [ nodejs ]}
${lib.optionalString stdenv.hostPlatform.isLinux "patchelf --set-interpreter ${stdenv.cc.libc}/lib/ld-linux-x86-64.so.2 \"$out/lib/node_modules/makam/makam-bin-linux64\""}
'';
};
node2nix = prev.node2nix.override {
# Get latest commit for misc fixes
src = fetchFromGitHub {