Skip to content

chandler-barlow/janet-nix

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Janet NIX

Barebones functionality for creating a janet project in nix. Allows for building janet projects that depend on spork currently.

The goal here is to eventually support various janet modules and deps. Currently only spork is supported.

Usage

{ pkgs ? import <nixpkgs> {} }:
let
	janetWrapped = pkgs.callPackage ./janet.nix {};
in
	pkgs.mkShell {
		buildInputs = [ janetWrapped ];
		shellHook = ''
			echo "It's janet time!"
		'';
	}

Notes

  • Makes heavy use of @turnerdev's janet-nix, with some minor updates
  • Refactored to use flake parts and has additional binaries

About

Some useful janet packages

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors