mirror of
https://github.com/zaphar/jeremy.marzhillstudios.com.git
synced 2025-07-21 19:29:48 -04:00
23 lines
527 B
Nix
23 lines
527 B
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs?ref=22.05-beta";
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
};
|
|
|
|
outputs = {self, nixpkgs, flake-utils}:
|
|
flake-utils.lib.eachDefaultSystem (system:
|
|
let
|
|
pkgs = import nixpkgs { inherit system; };
|
|
sile = pkgs.sile.overrideAttrs(oldAttrs: { doCheck = false; });
|
|
in {
|
|
packages.sile = sile;
|
|
apps.sile = {
|
|
type = "app";
|
|
program = "${sile}/bin/sile";
|
|
};
|
|
devShell = pkgs.mkShell {
|
|
buildInputs = [ sile ];
|
|
};
|
|
});
|
|
}
|