mirror of
https://github.com/icewind1991/nextcloud-version-matrix.git
synced 2026-06-03 09:34:12 +02:00
24 lines
426 B
Nix
24 lines
426 B
Nix
{
|
|
inputs = {
|
|
utils.url = "github:numtide/flake-utils";
|
|
nixpkgs.url = "nixpkgs/release-25.11";
|
|
};
|
|
|
|
outputs = {
|
|
self,
|
|
nixpkgs,
|
|
utils
|
|
}:
|
|
utils.lib.eachDefaultSystem (system: let
|
|
pkgs = (import nixpkgs) {
|
|
inherit system;
|
|
};
|
|
in {
|
|
# `nix develop`
|
|
devShell = pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs; [
|
|
nodejs_20
|
|
];
|
|
};
|
|
});
|
|
}
|