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-11 01:56:35 -05:00
rev = "ef9a067d84dcf02e280bb82796a2e0ee6177a34d";
hash = "sha256-BLY/RiyQfSgzxu6TDIzkE2mRT3YI5llJc35j57C8Os4=";
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;
}
);
};
});
}