mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 21:13:40 +00:00
a4d711538e
* alfis: migrate to the new fetcher * workstyle: migrate to the new fetcher * mullvad: migrate to the new fetcher * chiptrack: migrate to the new fetcher * conduwuit: migrate to the new fetcher * xdg-desktop-portal-cosmic: migrate to the new rust fetcher * cloud-hypervisor: migrate to the new fetcher
142 lines
3.2 KiB
Nix
142 lines
3.2 KiB
Nix
{
|
|
clangStdenv,
|
|
rustPlatform,
|
|
lib,
|
|
linkFarm,
|
|
fetchgit,
|
|
fetchFromGitHub,
|
|
runCommand,
|
|
alsa-lib,
|
|
brotli,
|
|
cmake,
|
|
expat,
|
|
fontconfig,
|
|
freetype,
|
|
gn,
|
|
harfbuzz,
|
|
icu,
|
|
libglvnd,
|
|
libjpeg,
|
|
libxkbcommon,
|
|
libX11,
|
|
libXcursor,
|
|
libXext,
|
|
libXi,
|
|
libXrandr,
|
|
makeWrapper,
|
|
ninja,
|
|
pkg-config,
|
|
python3,
|
|
removeReferencesTo,
|
|
wayland,
|
|
zlib,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage.override { stdenv = clangStdenv; } rec {
|
|
pname = "chiptrack";
|
|
version = "0.3.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jturcotte";
|
|
repo = "chiptrack";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-Iehe4dD7nWoBB6RaYLvPvV6bBKEc3Kdkwrhb8Ry+s9s=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [
|
|
rustPlatform.bindgenHook
|
|
cmake
|
|
makeWrapper
|
|
pkg-config
|
|
python3
|
|
removeReferencesTo
|
|
];
|
|
|
|
buildInputs = [
|
|
expat
|
|
fontconfig
|
|
freetype
|
|
harfbuzz
|
|
icu
|
|
libjpeg
|
|
] ++ lib.optionals clangStdenv.hostPlatform.isLinux [ alsa-lib ];
|
|
|
|
# Has git dependencies
|
|
useFetchCargoVendor = true;
|
|
cargoHash = "sha256-K1Fio9xu0fxVYZZmZ4IpI5n5gBCogwTEWwUaJPBi35Y=";
|
|
|
|
env = {
|
|
SKIA_SOURCE_DIR =
|
|
let
|
|
repo = fetchFromGitHub {
|
|
owner = "rust-skia";
|
|
repo = "skia";
|
|
# see rust-skia:skia-bindings/Cargo.toml#package.metadata skia
|
|
rev = "refs/tags/m121-0.69.1";
|
|
hash = "sha256-OviOIiw3RvQx1dvtQ9kWIc/mGVPOOsLVCIRoBJrC72M=";
|
|
};
|
|
# The externals for skia are taken from skia/DEPS
|
|
# Reduced to only what's necessary
|
|
externals = linkFarm "skia-externals" (
|
|
lib.mapAttrsToList (name: value: {
|
|
inherit name;
|
|
path = fetchgit value;
|
|
}) (lib.importJSON ./skia-externals.json)
|
|
);
|
|
in
|
|
runCommand "source" { } ''
|
|
cp -R ${repo} $out
|
|
chmod -R +w $out
|
|
ln -s ${externals} $out/third_party/externals
|
|
'';
|
|
SKIA_GN_COMMAND = lib.getExe gn;
|
|
SKIA_NINJA_COMMAND = lib.getExe ninja;
|
|
SKIA_USE_SYSTEM_LIBRARIES = "1";
|
|
|
|
NIX_CFLAGS_COMPILE = "-I${lib.getDev harfbuzz}/include/harfbuzz";
|
|
};
|
|
|
|
# library skia embeds the path to its sources
|
|
postFixup = ''
|
|
remove-references-to -t "$SKIA_SOURCE_DIR" \
|
|
$out/bin/chiptrack
|
|
|
|
wrapProgram $out/bin/chiptrack \
|
|
--prefix LD_LIBRARY_PATH : ${
|
|
lib.makeLibraryPath (
|
|
[
|
|
brotli
|
|
zlib
|
|
]
|
|
++ lib.optionals clangStdenv.hostPlatform.isLinux [
|
|
libglvnd
|
|
libxkbcommon
|
|
libX11
|
|
libXcursor
|
|
libXext
|
|
libXrandr
|
|
libXi
|
|
wayland
|
|
]
|
|
)
|
|
}
|
|
'';
|
|
|
|
disallowedReferences = [ env.SKIA_SOURCE_DIR ];
|
|
|
|
meta = {
|
|
description = "Programmable cross-platform sequencer for the Game Boy Advance sound chip";
|
|
homepage = "https://github.com/jturcotte/chiptrack";
|
|
license = with lib.licenses; [
|
|
mit # main
|
|
gpl3Only # GPL dependencies
|
|
];
|
|
mainProgram = "chiptrack";
|
|
maintainers = with lib.maintainers; [ OPNA2608 ];
|
|
# Various issues with wrong max macOS version & misparsed target conditional checks, can't figure out the magic combination for this
|
|
broken = clangStdenv.hostPlatform.isDarwin;
|
|
};
|
|
}
|