Nix flake для установки refal5
- Nix 100%
| .gitignore | ||
| flake.lock | ||
| flake.nix | ||
| LICENSE | ||
| package.nix | ||
| README.md | ||
Установка Refal5 через Nix
Глобальная установка
nix profile add git+https://git.flygrounder.ru/flygrounder/refal5-flake
devenv
# devenv.yaml
inputs:
nixpkgs:
url: github:cachix/devenv-nixpkgs/rolling
refal5-flake:
url: git+https://git.flygrounder.ru/flygrounder/refal5-flake
inputs:
nixpkgs:
follows: nixpkgs
# devenv.nix
{ pkgs, inputs, ... }:
{
overlays = [ inputs.refal5-flake.overlays.default ];
packages = [
pkgs.refal5
];
}