fbjni: drop (#436628)

authored by Sandro and committed by GitHub 549bb173 d16c5529

+1 -63
-63
pkgs/by-name/fb/fbjni/package.nix
··· 1 - { 2 - lib, 3 - stdenv, 4 - fetchFromGitHub, 5 - cmake, 6 - fetchpatch, 7 - jdk_headless, 8 - gtest, 9 - }: 10 - 11 - stdenv.mkDerivation rec { 12 - pname = "fbjni"; 13 - version = "0.5.1"; 14 - 15 - src = fetchFromGitHub { 16 - owner = "facebookincubator"; 17 - repo = "fbjni"; 18 - rev = "v${version}"; 19 - sha256 = "sha256-97KqfFWtR3VJe2s0D60L3dsIDm4kMa0hpkKoZSAEoVY="; 20 - }; 21 - 22 - patches = [ 23 - # Upstram fix for builds on GCC 13. Should be removable with next release after 0.5.1 24 - (fetchpatch { 25 - name = "add-cstdint-include.patch"; 26 - url = "https://github.com/facebookincubator/fbjni/commit/59461eff6c7881d58e958287481e1f1cd99e08d3.patch"; 27 - hash = "sha256-r27C+ODTCZdd1tEz3cevnNNyZlrRhq1jOzwnIYlkglM="; 28 - }) 29 - 30 - # Part of https://github.com/facebookincubator/fbjni/pull/76 31 - # fix cmake file installation directory 32 - (fetchpatch { 33 - url = "https://github.com/facebookincubator/fbjni/commit/ab02e60b5da28647bfcc864b0bb1b9a90504cdb1.patch"; 34 - sha256 = "sha256-/h6kosulRH/ZAU2u0zRSaNDK39jsnFt9TaSxyBllZqM="; 35 - }) 36 - 37 - # install headers 38 - (fetchpatch { 39 - url = "https://github.com/facebookincubator/fbjni/commit/74e125caa9a815244f1e6bd08eaba57d015378b4.patch"; 40 - sha256 = "sha256-hQS35D69GD3ewV4zzPG+LO7jk7ncCj2CYDbLJ6SnpqE="; 41 - }) 42 - ]; 43 - 44 - nativeBuildInputs = [ 45 - cmake 46 - jdk_headless 47 - ]; 48 - 49 - buildInputs = [ 50 - gtest 51 - ]; 52 - 53 - cmakeFlags = [ 54 - "-DJAVA_HOME=${jdk_headless.passthru.home}" 55 - ]; 56 - 57 - meta = with lib; { 58 - description = "Library designed to simplify the usage of the Java Native Interface"; 59 - homepage = "https://github.com/facebookincubator/fbjni"; 60 - license = licenses.asl20; 61 - maintainers = [ ]; 62 - }; 63 - }
+1
pkgs/top-level/aliases.nix
··· 876 876 faustStk = faustPhysicalModeling; # Added 2023-05-16 877 877 fastnlo = throw "'fastnlo' has been renamed to/replaced by 'fastnlo-toolkit'"; # Converted to throw 2024-10-17 878 878 fastnlo_toolkit = fastnlo-toolkit; # Added 2024-01-03 879 + fbjni = throw "fbjni has been removed, as it was broken"; # Added 2025-08-25 879 880 fcitx5-catppuccin = catppuccin-fcitx5; # Added 2024-06-19 880 881 fdr = throw "fdr has been removed, as it cannot be built from source and depends on Python 2.x"; # Added 2025-03-19 881 882 inherit (luaPackages) fennel; # Added 2022-09-24