This repository has been archived on 2026-05-25. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
sable-nix/flake.nix

16 lines
297 B
Nix
Raw Normal View History

2026-05-04 15:32:04 -04:00
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
};
outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = import nixpkgs {
inherit system;
};
in {
packages.${system}.sable = pkgs.callPackage ./pkgs/sable.nix {};
};
}