mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-09-02 21:54:45 +00:00
this shouldn't create any rebuilds
the following script was used to generate this:
```fish
#!/usr/bin/env fish
# nix shell .#nixfmt nixpkgs#{nixf-diagnose,ripgrep,sd}
set base (git rev-parse HEAD)
set scope pkgs/by-name
set builder buildGoModule
set files (rg --files-with-matches -F "$builder rec {" $scope | sort -u)
for file in $files
echo $file
sd -F "$builder rec {" "$builder (finalAttrs: {" $file
# version
sd -F 'version}' 'finalAttrs.version}' $file
sd -F '${version' '${finalAttrs.version' $file
sd -F '= version' '= finalAttrs.version' $file
sd -F 'inherit version;' 'inherit (finalAttrs) version;' $file
sd -F ' + version;' ' + finalAttrs.version;' $file
sd 'replaceStrings (.*) version' 'replaceStrings $1 finalAttrs.version' $file
sd -F 'splitVersion version' 'splitVersion finalAttrs.version' $file
sd -F 'versionAtLeast version' 'versionAtLeast finalAttrs.version' $file
sd 'versions\.([a-z]+) version' 'versions.$1 finalAttrs.version' $file
# src
sd -F 'src}' 'finalAttrs.src}' $file
sd -F '${src' '${finalAttrs.src' $file
sd -F '= src' '= finalAttrs.src' $file
sd -F 'inherit src;' 'inherit (finalAttrs) src;' $file
sd -F 'inherit (src' 'inherit (finalAttrs.src' $file
# meta
sd -F '${meta' '${finalAttrs.meta' $file
sd -F '= meta' '= finalAttrs.meta' $file
sd -F 'inherit (meta' 'inherit (finalAttrs.meta' $file
# other
sd -F 'inherit version src;' 'inherit (finalAttrs) version src;' $file
sd -F 'inherit src version;' 'inherit (finalAttrs) src version;' $file
sd -F 'makeLibraryPath buildInputs' 'makeLibraryPath finalAttrs.buildInputs' $file
sd -F 'buildInputs}' 'finalAttrs.buildInputs}' $file
sd -F 'desktopItem}' 'finalAttrs.desktopItem}' $file
sd -F 'runtimeLibs}' 'finalAttrs.runtimeLibs}' $file
sd -F 'libPath}' 'finalAttrs.libPath}' $file
sd -F 'runtimeDependencies}' 'finalAttrs.runtimeDependencies}' $file
sd -F 'nativeRuntimeInputs}' 'finalAttrs.nativeRuntimeInputs}' $file
sd -F '(!doCheck)' '(!finalAttrs.doCheck)' $file
sd -F 'optional doCheck' 'optional finalAttrs.doCheck' $file
sd -F 'optionals doCheck' 'optionals finalAttrs.doCheck' $file
sd -F '++ runtimeDependencies' '++ finalAttrs.runtimeDependencies' $file
# pname (restored afterwards)
sd -F 'pname}' 'finalAttrs.pname}' $file
sd -F '${pname' '${finalAttrs.pname' $file
sd -F '= pname' '= finalAttrs.pname' $file
# close finalAttrs lambda
echo ')' >>$file
# catch some errors early
if ! nixfmt $file
git restore $file
continue
end
if ! nixf-diagnose -i sema-primop-overridden $file
git restore $file
continue
end
end
set torestore (rg -F .finalAttrs --files-with-matches $scope)
if test (count $torestore) -gt 0
git restore $torestore
end
set torestore (rg -F finalAttrs.pname --files-with-matches $scope)
if test (count $torestore) -gt 0
git restore $torestore
end
# commit for faster eval times
git add pkgs
git commit --no-gpg-sign -m temp
set torestore
for file in $files
# file hasn't changed
if git diff --quiet $base $file
continue
end
# try to eval the package to definitely catch all errors
echo $file
set pname (string split / $file -f 4)
if ! nix eval .#$pname
set torestore $torestore $file
end
end
# restore files that don't eval
git reset --soft $base
git restore --staged .
if test (count $torestore) -gt 0
git restore $torestore
end
```
after that some manual cleanup was done:
- restoring files that cause changes in the number of lines
- restoring files that cause rebuilds
- restoring files that cause merge conflicts with staging
140 lines
3.7 KiB
Nix
140 lines
3.7 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
buildGoModule,
|
|
alsa-lib,
|
|
libGL,
|
|
libx11,
|
|
libxcursor,
|
|
libxext,
|
|
libxi,
|
|
libxinerama,
|
|
libxrandr,
|
|
libxxf86vm,
|
|
go-licenses,
|
|
pkg-config,
|
|
zip,
|
|
advancecomp,
|
|
makeWrapper,
|
|
nixosTests,
|
|
strip-nondeterminism,
|
|
}:
|
|
|
|
buildGoModule (finalAttrs: {
|
|
pname = "aaaaxy";
|
|
version = "1.6.301";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "divVerent";
|
|
repo = "aaaaxy";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-MWJ1k7Ps9jZa+AVNrvqRGMr3Mb0jd54NxGGylDI8VXo=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
vendorHash = "sha256-2tx+Uba2x2jYiEUUiHkr2nTp0BB6BgiAdW7UgRBQqSU=";
|
|
|
|
buildInputs = [
|
|
alsa-lib
|
|
libGL
|
|
libx11
|
|
libxcursor
|
|
libxext
|
|
libxi
|
|
libxinerama
|
|
libxrandr
|
|
libxxf86vm
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
go-licenses
|
|
pkg-config
|
|
zip
|
|
advancecomp
|
|
makeWrapper
|
|
strip-nondeterminism
|
|
];
|
|
|
|
outputs = [
|
|
"out"
|
|
"testing_infra"
|
|
];
|
|
|
|
postPatch = ''
|
|
# Without patching, "go run" fails with the error message:
|
|
# package github.com/google/go-licenses: no Go files in /build/source/vendor/github.com/google/go-licenses
|
|
substituteInPlace scripts/build-licenses.sh --replace-fail \
|
|
'$GO run ''${GO_FLAGS} github.com/google/go-licenses' 'go-licenses'
|
|
|
|
patchShebangs scripts/
|
|
substituteInPlace scripts/regression-test-demo.sh \
|
|
--replace-fail 'sh scripts/run-timedemo.sh' "$testing_infra/scripts/run-timedemo.sh"
|
|
|
|
substituteInPlace Makefile --replace-fail \
|
|
'CPPFLAGS ?= -DNDEBUG' \
|
|
'CPPFLAGS ?= -DNDEBUG -D_GLFW_GLX_LIBRARY=\"${lib.getLib libGL}/lib/libGL.so\" -D_GLFW_EGL_LIBRARY=\"${lib.getLib libGL}/lib/libEGL.so\"'
|
|
'';
|
|
|
|
overrideModAttrs = (
|
|
_: {
|
|
# We can't patch in the path to libGL directly because
|
|
# this is a fixed output derivation and when the path to libGL
|
|
# changes, the hash would change.
|
|
# To work around this, use environment variables.
|
|
postBuild = ''
|
|
substituteInPlace 'vendor/github.com/hajimehoshi/ebiten/v2/internal/graphicsdriver/opengl/gl/procaddr_linbsd.go' \
|
|
--replace-fail \
|
|
'import (' \
|
|
'import ("os"' \
|
|
--replace-fail \
|
|
'{"libGL.so", "libGL.so.2", "libGL.so.1", "libGL.so.0"}' \
|
|
'{os.Getenv("EBITENGINE_LIBGL")}' \
|
|
--replace-fail \
|
|
'{"libGLESv2.so", "libGLESv2.so.2", "libGLESv2.so.1", "libGLESv2.so.0"}' \
|
|
'{os.Getenv("EBITENGINE_LIBGLESv2")}'
|
|
'';
|
|
}
|
|
);
|
|
|
|
makeFlags = [
|
|
"BUILDTYPE=release"
|
|
];
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
AAAAXY_BUILD_USE_VERSION_FILE=true make $makeFlags
|
|
runHook postBuild
|
|
'';
|
|
|
|
postInstall = ''
|
|
install -Dm755 'aaaaxy' -t "$out/bin/"
|
|
install -Dm444 'aaaaxy.svg' -t "$out/share/icons/hicolor/scalable/apps/"
|
|
install -Dm644 'aaaaxy.png' -t "$out/share/icons/hicolor/128x128/apps/"
|
|
install -Dm644 'aaaaxy.desktop' -t "$out/share/applications/"
|
|
install -Dm644 'io.github.divverent.aaaaxy.metainfo.xml' -t "$out/share/metainfo/"
|
|
|
|
wrapProgram $out/bin/aaaaxy \
|
|
--set EBITENGINE_LIBGL '${lib.getLib libGL}/lib/libGL.so' \
|
|
--set EBITENGINE_LIBGLESv2 '${lib.getLib libGL}/lib/libGLESv2.so'
|
|
|
|
install -Dm755 'scripts/run-timedemo.sh' -t "$testing_infra/scripts/"
|
|
install -Dm755 'scripts/regression-test-demo.sh' -t "$testing_infra/scripts/"
|
|
install -Dm644 'assets/demos/benchmark.dem' -t "$testing_infra/assets/demos/"
|
|
'';
|
|
|
|
passthru.tests = {
|
|
aaaaxy = nixosTests.aaaaxy;
|
|
};
|
|
|
|
strictDeps = true;
|
|
|
|
meta = {
|
|
description = "Nonlinear 2D puzzle platformer taking place in impossible spaces";
|
|
mainProgram = "aaaaxy";
|
|
homepage = "https://divverent.github.io/aaaaxy/";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ Luflosi ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|