mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
chiptrack: init at 0.3.1
This commit is contained in:
parent
7ef47328dd
commit
a3843a7ee5
5112
pkgs/by-name/ch/chiptrack/Cargo.lock
generated
Normal file
5112
pkgs/by-name/ch/chiptrack/Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load Diff
146
pkgs/by-name/ch/chiptrack/package.nix
Normal file
146
pkgs/by-name/ch/chiptrack/package.nix
Normal file
@ -0,0 +1,146 @@
|
||||
{
|
||||
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
|
||||
cargoLock = {
|
||||
lockFile = ./Cargo.lock;
|
||||
outputHashes = {
|
||||
"rboy-0.1.0" = "sha256-2Acgg5phDAVTJht3XIXO7/TV5FxEXyLQJtC5n7cd9Ek=";
|
||||
"wamr-sys-1.2.0" = "sha256-lNpJjHqdaYi/cyoAb8RlsKuLQ9WhuGwlzcSpDM68Kco=";
|
||||
};
|
||||
};
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
7
pkgs/by-name/ch/chiptrack/skia-externals.json
Normal file
7
pkgs/by-name/ch/chiptrack/skia-externals.json
Normal file
@ -0,0 +1,7 @@
|
||||
{
|
||||
"wuffs": {
|
||||
"url": "https://skia.googlesource.com/external/github.com/google/wuffs-mirror-release-c.git",
|
||||
"rev": "e3f919ccfe3ef542cfc983a82146070258fb57f8",
|
||||
"hash": "sha256-373d2F/STcgCHEq+PO+SCHrKVOo6uO1rqqwRN5eeBCw="
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user