Initial commit

This commit is contained in:
Marc Plano-Lesay 2024-10-23 20:36:36 +11:00
commit 56a22203ef
Signed by: kernald
GPG key ID: 66A41B08CC62A6CF
9 changed files with 14675 additions and 0 deletions

31
flake.nix Normal file
View file

@ -0,0 +1,31 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs =
{ nixpkgs
, flake-utils
, ...
}:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs {
inherit system;
};
in
{
devShells.default = pkgs.mkShell {
name = "immich-tools";
buildInputs = with pkgs; [
cargo
openssl
pkg-config
] ++ lib.optionals stdenv.isDarwin [
libiconv
darwin.apple_sdk.frameworks.SystemConfiguration
];
};
});
}