81 lines
1.8 KiB
Nix
81 lines
1.8 KiB
Nix
{ lib
|
|
, stdenv
|
|
, alsa-lib
|
|
, fetchFromGitHub
|
|
, libGL
|
|
, libGLU
|
|
, libX11
|
|
, libXext
|
|
, makeBinaryWrapper
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "minimacy";
|
|
version = "1.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ambermind";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-uA+4dnhOnv7qRE7nqew8a14DGaQblsMY2uBZ+iyLtFU=";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeBinaryWrapper ];
|
|
|
|
buildInputs = [ libGL libGLU ] ++ lib.optionals stdenv.isLinux [ alsa-lib libX11 libXext ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
env.NIX_CFLAGS_COMPILE = "-Wno-unused-result";
|
|
|
|
preBuild = ''
|
|
pushd ${if stdenv.isDarwin then "macos/cmdline" else "unix"}
|
|
'';
|
|
|
|
# TODO: build graphic version for darwin
|
|
buildFlags = (if stdenv.isDarwin then [ "nox" ] else [ "all" ]) ++ [ "CC=${stdenv.cc.targetPrefix}cc" ];
|
|
|
|
postBuild = ''
|
|
popd
|
|
'';
|
|
|
|
doCheck = true;
|
|
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
|
|
bin/${if stdenv.isDarwin then "minimacyMac" else "minimacy"} system/demo/demo.fun.mandelbrot.mcy
|
|
|
|
runHook postCheck
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/lib/minimacy
|
|
cp -r {README.md,LICENSE,system,rom,topLevel.mcy} $out/lib/minimacy
|
|
install bin/minimacy* -Dt $out/bin
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
postFixup = ''
|
|
for prog in $out/bin/minimacy*;
|
|
do wrapProgram $prog \
|
|
--set MINIMACY $out/lib/minimacy
|
|
done
|
|
'';
|
|
|
|
meta = {
|
|
description = "Open-source minimalist computing technology";
|
|
longDescription = ''
|
|
Minimacy is an open-source minimalist computation system based on the principle "Less is more".
|
|
It is designed and programmed by Sylvain Huet.
|
|
'';
|
|
maintainers = with lib.maintainers; [ jboy ];
|
|
homepage = "https://minimacy.net";
|
|
license = lib.licenses.gpl2;
|
|
platforms = lib.platforms.linux ++ lib.platforms.darwin;
|
|
};
|
|
}
|