Initial commit
This commit is contained in:
commit
dc3eab173c
5 changed files with 1559 additions and 0 deletions
30
flake.nix
Normal file
30
flake.nix
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
description = "A very basic flake";
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = github:NixOS/nixpkgs;
|
||||
utils.url = github:numtide/flake-utils;
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, utils }: utils.lib.eachDefaultSystem(system:
|
||||
let
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
lib = pkgs.lib;
|
||||
# FIXME: Lua is borked at the moment :(
|
||||
# lua = pkgs.lua5_3.withPackages(ps: with ps; [
|
||||
# readline
|
||||
# # cjson
|
||||
# # http
|
||||
# luarocks
|
||||
# ]);
|
||||
# fennel = pkgs.fennel.override { lua = lua; };
|
||||
in {
|
||||
devShells.default = pkgs.mkShell rec {
|
||||
buildInputs = [
|
||||
pkgs.chicken
|
||||
# pkgs.guile_3_0
|
||||
];
|
||||
# LD_LIBRARY_PATH = "${lib.makeLibraryPath buildInputs}";
|
||||
};
|
||||
});
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue