nixpkgs/pkgs/by-name/ux/uxn/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

74 lines
1.6 KiB
Nix
Raw Normal View History

2021-08-27 04:31:00 +00:00
{ lib
, stdenv
, fetchFromSourcehut
, SDL2
, unstableGitUpdater
2021-08-27 04:31:00 +00:00
}:
stdenv.mkDerivation (finalAttrs: {
2021-08-27 04:31:00 +00:00
pname = "uxn";
version = "unstable-2023-09-29";
2021-08-27 04:31:00 +00:00
src = fetchFromSourcehut {
owner = "~rabbits";
repo = "uxn";
rev = "c71842aa8472f26c0ea7fbf92624659313c038ba";
hash = "sha256-Lo1AkK81Hv8A0jBfpR4lxlBJcWkh9LttURiXVoibKSs=";
2021-08-27 04:31:00 +00:00
};
outputs = [ "out" "projects" ];
nativeBuildInputs = [
SDL2
];
2021-08-27 04:31:00 +00:00
buildInputs = [
SDL2
];
strictDeps = true;
postPatch = ''
patchShebangs build.sh
substituteInPlace build.sh \
--replace "-L/usr/local/lib " "" \
--replace "\$(brew --prefix)/lib/libSDL2.a " ""
'';
2021-08-27 04:31:00 +00:00
buildPhase = ''
runHook preBuild
./build.sh --no-run
2021-08-27 04:31:00 +00:00
runHook postBuild
'';
# ./build.sh --install is meant to install in $HOME, therefore not useful for
# package maintainers
2021-08-27 04:31:00 +00:00
installPhase = ''
runHook preInstall
install -d $out/bin/
cp bin/uxnasm bin/uxncli bin/uxnemu $out/bin/
install -d $projects/share/uxn/
cp -r projects $projects/share/uxn/
2021-08-27 04:31:00 +00:00
runHook postInstall
'';
passthru.updateScript = unstableGitUpdater { };
meta = {
2021-08-27 04:31:00 +00:00
homepage = "https://wiki.xxiivv.com/site/uxn.html";
description = "An assembler and emulator for the Uxn stack machine";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ AndersonTorres ];
mainProgram = "uxnemu";
inherit (SDL2.meta) platforms;
2023-08-13 21:19:03 +00:00
# ofborg complains about an error trying to link inexistent SDL2 library
# For full logs, run:
# 'nix log /nix/store/bmyhh0lpifl9swvkpflqldv43vcrgci1-uxn-unstable-2023-08-10.drv'.
broken = stdenv.isDarwin;
2021-08-27 04:31:00 +00:00
};
})