571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
70 lines
1.6 KiB
Nix
70 lines
1.6 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
darwin,
|
|
rustPlatform,
|
|
pkg-config,
|
|
openssl,
|
|
runCommand,
|
|
patchelf,
|
|
zlib,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "cargo-bisect-rustc";
|
|
version = "0.6.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rust-lang";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-7HiM1oRuLSfRaum66duag/w8ncFdxRLF0yeSGlIey0Y=";
|
|
};
|
|
|
|
patches =
|
|
let
|
|
patchelfPatch =
|
|
runCommand "0001-dynamically-patchelf-binaries.patch"
|
|
{
|
|
CC = stdenv.cc;
|
|
patchelf = patchelf;
|
|
libPath = "$ORIGIN/../lib:${lib.makeLibraryPath [ zlib ]}";
|
|
}
|
|
''
|
|
export dynamicLinker=$(cat $CC/nix-support/dynamic-linker)
|
|
substitute ${./0001-dynamically-patchelf-binaries.patch} $out \
|
|
--subst-var patchelf \
|
|
--subst-var dynamicLinker \
|
|
--subst-var libPath
|
|
'';
|
|
in
|
|
lib.optionals stdenv.hostPlatform.isLinux [ patchelfPatch ];
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs =
|
|
[ openssl ]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
darwin.apple_sdk.frameworks.Security
|
|
darwin.apple_sdk.frameworks.SystemConfiguration
|
|
];
|
|
|
|
cargoHash = "sha256-CgEs0cejquFRY3VN6CgbE23Gipg+LEuWp/jSIkITrjw=";
|
|
|
|
checkFlags = [
|
|
"--skip test_github" # requires internet
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Bisects rustc, either nightlies or CI artifacts";
|
|
mainProgram = "cargo-bisect-rustc";
|
|
homepage = "https://github.com/rust-lang/cargo-bisect-rustc";
|
|
license = with licenses; [
|
|
asl20
|
|
mit
|
|
];
|
|
maintainers = with maintainers; [ davidtwco ];
|
|
};
|
|
}
|