mirror of
https://github.com/daylinmorgan/oizys.git
synced 2025-01-22 03:07:31 -06:00
12 lines
298 B
Nix
12 lines
298 B
Nix
{ flake, ... }:
|
|
((flake.pkgs "lix-module").default.override {
|
|
# is this doing anything?
|
|
aws-sdk-cpp = null;
|
|
}).overrideAttrs
|
|
(attrs: {
|
|
version = "${attrs.version}-oizys";
|
|
|
|
# probs a mistake ¯\_(ツ)_/¯
|
|
# surely they wouldn't push a broken CL....surely
|
|
doCheck = false;
|
|
})
|