bfc: init at unstable-2023-02-02

https://github.com/Wilfred/bfc
https://bfc.wilfred.me.uk
This commit is contained in:
figsoda
2023-05-31 18:25:16 -04:00
parent 4c04286693
commit 9cbd521c3d
2 changed files with 44 additions and 0 deletions
@@ -0,0 +1,42 @@
{ lib
, rustPlatform
, fetchFromGitHub
, llvmPackages_13
, libxml2
, ncurses
, zlib
}:
rustPlatform.buildRustPackage {
pname = "bfc";
version = "unstable-2023-02-02";
src = fetchFromGitHub {
owner = "Wilfred";
repo = "bfc";
rev = "647379de6ec36b64ba0a098589c8374d0ce32690";
hash = "sha256-pPx9S7EnrL6aIvLlrCjGDKNYLhzd6ud1RvN+qCiZGXk=";
};
cargoHash = "sha256-5RPB4biLB2BTmfgOGzvnnQjnGp3cTmJdU1CVTAFRvKE=";
buildInputs = [
libxml2
ncurses
zlib
];
env = {
LLVM_SYS_130_PREFIX = llvmPackages_13.llvm.dev;
};
# process didn't exit successfully: <...> SIGSEGV
doCheck = false;
meta = with lib; {
description = "An industrial-grade brainfuck compiler";
homepage = "https://bfc.wilfred.me.uk";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ figsoda ];
};
}
+2
View File
@@ -14651,6 +14651,8 @@ with pkgs;
beekeeper-studio = callPackage ../development/tools/database/beekeeper-studio { };
bfc = callPackage ../development/compilers/bfc { };
bigloo = callPackage ../development/compilers/bigloo { };
binaryen = callPackage ../development/compilers/binaryen {