nixos-config/overlay/attic/default.nix

24 lines
699 B
Nix
Raw Normal View History

2025-01-07 16:19:18 -05:00
final: prev: {
attic-client = prev.attic-client.override (old: {
rustPlatform = old.rustPlatform // {
buildRustPackage =
args:
old.rustPlatform.buildRustPackage (
args
// {
version = "0.1.1";
src = final.fetchFromGitHub {
owner = "cything";
repo = "attic";
2025-01-08 23:43:42 -05:00
rev = "e91261dc9a22d267700ab9095155f5581ac3b06c";
hash = "sha256-dIrCD0rLXlW1XsNiF50vTeHi1l4xHYh0m+aCdHNcMfU=";
2025-01-07 16:19:18 -05:00
};
cargoLock = null;
2025-01-08 23:43:42 -05:00
cargoHash = "sha256-AbpWnYfBMrR6oOfy2LkQvIPYsClCWE89bJav+iHTtLM=";
2025-01-07 16:19:18 -05:00
useFetchCargoVendor = true;
}
);
};
});
}