mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-17 18:34:38 +00:00
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.
49 lines
1.2 KiB
Nix
49 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, llvmPackages_19
|
|
, zlib
|
|
, ncurses
|
|
, libxml2
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "bpf-linker";
|
|
version = "0.9.13";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "aya-rs";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-CRYp1ktmmY4OS23+LNKOBQJUMkd+GXptBp5LPfbyZAc=";
|
|
};
|
|
|
|
cargoLock = {
|
|
lockFile = ./Cargo.lock;
|
|
outputHashes = {
|
|
"compiletest_rs-0.10.2" = "sha256-JTfVfMW0bCbFjQxeAFu3Aex9QmGnx0wp6weGrNlQieA=";
|
|
};
|
|
};
|
|
|
|
buildNoDefaultFeatures = true;
|
|
|
|
nativeBuildInputs = [ llvmPackages_19.llvm ];
|
|
buildInputs = [ zlib ncurses libxml2 ];
|
|
|
|
# fails with: couldn't find crate `core` with expected target triple bpfel-unknown-none
|
|
# rust-src and `-Z build-std=core` are required to properly run the tests
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Simple BPF static linker";
|
|
mainProgram = "bpf-linker";
|
|
homepage = "https://github.com/aya-rs/bpf-linker";
|
|
license = with licenses; [ asl20 mit ];
|
|
maintainers = with maintainers; [ nickcao ];
|
|
# llvm-sys crate locates llvm by calling llvm-config
|
|
# which is not available when cross compiling
|
|
broken = stdenv.buildPlatform != stdenv.hostPlatform;
|
|
};
|
|
}
|