1
0
mirror of https://github.com/atuinsh/atuin.git synced 2025-07-07 18:07:06 +02:00

feat(nix): Add a nixpkgs overlay ()

This commit is contained in:
Patrick Jackson
2023-10-29 12:27:52 -06:00
committed by GitHub
parent 57a8db13c2
commit 21f3f64ad5

@ -31,5 +31,10 @@
]; ];
RUST_SRC_PATH = "${pkgs.rustPlatform.rustLibSrc}"; RUST_SRC_PATH = "${pkgs.rustPlatform.rustLibSrc}";
}); });
}); })
// {
overlays.default = final: prev: {
inherit (self.packages.${final.system}) atuin;
};
};
} }