cargonode: drop (#425666)

authored by Success Kingsley and committed by GitHub 47632015 0f50c2a4

+1 -46
-46
pkgs/by-name/ca/cargonode/package.nix
··· 1 - { 2 - lib, 3 - rustPlatform, 4 - fetchFromGitHub, 5 - pkg-config, 6 - }: 7 - 8 - rustPlatform.buildRustPackage rec { 9 - pname = "cargonode"; 10 - version = "0.1.3"; 11 - 12 - src = fetchFromGitHub { 13 - owner = "xosnrdev"; 14 - repo = "cargonode"; 15 - tag = version; 16 - hash = "sha256-O5+wAM99m1rgQpwz36mkHEU/FvGnY6hBCKPMIGXCeCU="; 17 - }; 18 - 19 - useFetchCargoVendor = true; 20 - cargoHash = "sha256-dYOdnyKdzL93kuSTUb+1vRqfDgkZLymaEZo9FUrR1JI="; 21 - 22 - checkFlags = [ 23 - # Skip test that requires network access 24 - "--skip test_download_file" 25 - "--skip test_extract_zip" 26 - "--skip test_invalid_download_url" 27 - "--skip test_create_package" 28 - "--skip test_init_package" 29 - ]; 30 - 31 - nativeBuildInputs = [ 32 - pkg-config 33 - ]; 34 - 35 - meta = { 36 - description = "Unified tooling for Node.js"; 37 - mainProgram = "cargonode"; 38 - homepage = "https://github.com/xosnrdev/cargonode?tab=readme-ov-file#readme"; 39 - changelog = "https://github.com/xosnrdev/cargonode/blob/${version}/CHANGELOG.md"; 40 - license = with lib.licenses; [ 41 - asl20 # or 42 - mit 43 - ]; 44 - maintainers = with lib.maintainers; [ xosnrdev ]; 45 - }; 46 - }
···
+1
pkgs/top-level/aliases.nix
··· 408 cargo-information = throw "'cargo-information' has been removed due to being merged upstream into 'cargo'"; # Added 2025-03-09 409 cargo-inspect = throw "'cargo-inspect' has been removed due to lack of upstream maintenance. Upstream recommends cargo-expand."; # Added 2025-01-26 410 cargo-web = throw "'cargo-web' has been removed due to lack of upstream maintenance"; # Added 2025-01-26 411 cassandra_3_0 = throw "'cassandra_3_0' has been removed has it reached end-of-life"; # Added 2025-03-23 412 cassandra_3_11 = throw "'cassandra_3_11' has been removed has it reached end-of-life"; # Added 2025-03-23 413 cawbird = throw "cawbird has been abandoned upstream and is broken anyways due to Twitter closing its API";
··· 408 cargo-information = throw "'cargo-information' has been removed due to being merged upstream into 'cargo'"; # Added 2025-03-09 409 cargo-inspect = throw "'cargo-inspect' has been removed due to lack of upstream maintenance. Upstream recommends cargo-expand."; # Added 2025-01-26 410 cargo-web = throw "'cargo-web' has been removed due to lack of upstream maintenance"; # Added 2025-01-26 411 + cargonode = throw "'cargonode' has been removed due to lack of upstream maintenance"; # Added 2025-06-18 412 cassandra_3_0 = throw "'cassandra_3_0' has been removed has it reached end-of-life"; # Added 2025-03-23 413 cassandra_3_11 = throw "'cassandra_3_11' has been removed has it reached end-of-life"; # Added 2025-03-23 414 cawbird = throw "cawbird has been abandoned upstream and is broken anyways due to Twitter closing its API";