1
1
mirror of https://github.com/ellie/atuin.git synced 2024-08-16 16:30:43 +03:00

feat(nix): Add a nixpkgs overlay (#1357)

This commit is contained in:
Patrick Jackson 2023-10-29 12:27:52 -06:00 committed by GitHub
parent 57a8db13c2
commit 21f3f64ad5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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