diff options
Diffstat (limited to 'pkgs/development/compilers/minimacy/default.nix')
-rw-r--r-- | pkgs/development/compilers/minimacy/default.nix | 80 |
1 files changed, 0 insertions, 80 deletions
diff --git a/pkgs/development/compilers/minimacy/default.nix b/pkgs/development/compilers/minimacy/default.nix deleted file mode 100644 index ae4da0d5b027..000000000000 --- a/pkgs/development/compilers/minimacy/default.nix +++ /dev/null @@ -1,80 +0,0 @@ -{ 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; - }; -} |