mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 06:00:33 +03:00
cargo-information: remove, due to beeing merged into
This commit is contained in:
parent
38825a2bea
commit
71d3a69606
3 changed files with 1 additions and 3661 deletions
3593
pkgs/by-name/ca/cargo-information/Cargo.lock
generated
3593
pkgs/by-name/ca/cargo-information/Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -1,68 +0,0 @@
|
||||||
{
|
|
||||||
lib,
|
|
||||||
rustPlatform,
|
|
||||||
fetchFromGitHub,
|
|
||||||
makeWrapper,
|
|
||||||
pkg-config,
|
|
||||||
openssl,
|
|
||||||
curl,
|
|
||||||
rustc,
|
|
||||||
stdenv,
|
|
||||||
darwin,
|
|
||||||
}:
|
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
|
||||||
pname = "cargo-information";
|
|
||||||
version = "0.7.0";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
|
||||||
owner = "hi-rustin";
|
|
||||||
repo = "cargo-information";
|
|
||||||
rev = "v${version}";
|
|
||||||
hash = "sha256-gu1t0jMBJ+mJIVMGy1JlabzcOT4lbmTvO/VQfxLLsWM=";
|
|
||||||
};
|
|
||||||
|
|
||||||
cargoLock = {
|
|
||||||
lockFile = ./Cargo.lock;
|
|
||||||
outputHashes = {
|
|
||||||
"cargo-test-macro-0.2.1" = "sha256-3sergm2T4VXT41ERCLL7p9+pJwIKzT54qdla8V58Psk=";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
checkFlags = [
|
|
||||||
# Require network access
|
|
||||||
"--skip=cargo_information::specify_version_within_ws_and_match_with_lockfile::case"
|
|
||||||
"--skip=cargo_information::within_ws::case"
|
|
||||||
"--skip=cargo_information::within_ws_with_alternative_registry::case"
|
|
||||||
"--skip=cargo_information::within_ws_without_lockfile::case"
|
|
||||||
"--skip=cargo_information::transitive_dependency_within_ws::case"
|
|
||||||
];
|
|
||||||
|
|
||||||
nativeBuildInputs = [
|
|
||||||
pkg-config
|
|
||||||
makeWrapper
|
|
||||||
];
|
|
||||||
|
|
||||||
buildInputs =
|
|
||||||
[
|
|
||||||
openssl
|
|
||||||
curl
|
|
||||||
]
|
|
||||||
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
||||||
darwin.apple_sdk.frameworks.Security
|
|
||||||
];
|
|
||||||
|
|
||||||
postFixup = ''
|
|
||||||
wrapProgram $out/bin/cargo-info \
|
|
||||||
--prefix PATH : ${lib.makeBinPath [ rustc ]}
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = with lib; {
|
|
||||||
description = "Cargo subcommand to show information about crates";
|
|
||||||
mainProgram = "cargo-info";
|
|
||||||
homepage = "https://github.com/hi-rustin/cargo-information";
|
|
||||||
changelog = "https://github.com/hi-rustin/cargo-information/blob/v${src.rev}/CHANGELOG.md";
|
|
||||||
license = licenses.mit;
|
|
||||||
maintainers = with maintainers; [ eopb ];
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -259,6 +259,7 @@ mapAliases {
|
||||||
cargo-deps = throw "cargo-deps has been removed as the repository is deleted"; # Added 2024-04-09
|
cargo-deps = throw "cargo-deps has been removed as the repository is deleted"; # Added 2024-04-09
|
||||||
cargo-espflash = espflash;
|
cargo-espflash = espflash;
|
||||||
cargo-kcov = throw "'cargo-kcov' has been removed due to lack of upstream maintenance"; # Added 2025-01-25
|
cargo-kcov = throw "'cargo-kcov' has been removed due to lack of upstream maintenance"; # Added 2025-01-25
|
||||||
|
cargo-information = throw "'cargo-information' has been removed due to being merged upstream into 'cargo'"; # Added 2025-03-09
|
||||||
cargo-inspect = throw "'cargo-inspect' has been removed due to lack of upstream maintenance. Upstream recommends cargo-expand."; # Added 2025-01-26
|
cargo-inspect = throw "'cargo-inspect' has been removed due to lack of upstream maintenance. Upstream recommends cargo-expand."; # Added 2025-01-26
|
||||||
cargo-web = throw "'cargo-web' has been removed due to lack of upstream maintenance"; # Added 2025-01-26
|
cargo-web = throw "'cargo-web' has been removed due to lack of upstream maintenance"; # Added 2025-01-26
|
||||||
cawbird = throw "cawbird has been abandoned upstream and is broken anyways due to Twitter closing its API";
|
cawbird = throw "cawbird has been abandoned upstream and is broken anyways due to Twitter closing its API";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue