2023-02-15 10:04:07 +01:00
|
|
|
{
|
|
|
|
inputs = {
|
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
|
|
|
flake-utils.url = "github:numtide/flake-utils";
|
2023-03-01 20:51:31 +01:00
|
|
|
flake-compat = {
|
|
|
|
url = "github:edolstra/flake-compat";
|
|
|
|
flake = false;
|
|
|
|
};
|
2023-02-15 10:04:07 +01:00
|
|
|
};
|
|
|
|
outputs = {
|
|
|
|
self,
|
|
|
|
nixpkgs,
|
|
|
|
flake-utils,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
flake-utils.lib.eachDefaultSystem (system: let
|
|
|
|
pkgs = nixpkgs.outputs.legacyPackages.${system};
|
|
|
|
in {
|
|
|
|
packages.atuin = pkgs.callPackage ./atuin.nix {
|
|
|
|
inherit (pkgs.darwin.apple_sdk.frameworks) Security SystemConfiguration;
|
|
|
|
};
|
|
|
|
packages.default = self.outputs.packages.${system}.atuin;
|
|
|
|
|
|
|
|
devShells.default = self.packages.${system}.default.overrideAttrs (super: {
|
|
|
|
nativeBuildInputs = with pkgs;
|
|
|
|
super.nativeBuildInputs
|
|
|
|
++ [
|
|
|
|
cargo-edit
|
|
|
|
clippy
|
|
|
|
rustfmt
|
|
|
|
];
|
|
|
|
RUST_SRC_PATH = "${pkgs.rustPlatform.rustLibSrc}";
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|