nix fmt
This commit is contained in:
parent
ec219285e9
commit
4c17e30aa8
4 changed files with 56 additions and 48 deletions
29
flake.nix
29
flake.nix
|
@ -69,20 +69,25 @@
|
|||
(overlayPkgsFromFlake inputs.nixpkgs-stable [
|
||||
# "prometheus" # fails to build on unstable
|
||||
])
|
||||
(final: prev: {
|
||||
(_final: prev: {
|
||||
conduwuit = prev.conduwuit.override (old: {
|
||||
rustPlatform = old.rustPlatform // {
|
||||
buildRustPackage = args: old.rustPlatform.buildRustPackage (args // {
|
||||
version = "0.4.6";
|
||||
src = prev.fetchFromGitHub {
|
||||
owner = "girlbossceo";
|
||||
repo = "conduwuit";
|
||||
rev = "c7ae9516767dff6767a725be3d144164c0d1ad56";
|
||||
hash = "sha256-llE6EPE70iV7gGz2c2uhRAQIhRe57cYaXfA4NnbRtrM=";
|
||||
};
|
||||
cargoHash = "sha256-5KXFei6A12QrFattkbDZM2LuLueV+aKunDgy6ZAaF7E=";
|
||||
doCheck = false;
|
||||
});
|
||||
buildRustPackage =
|
||||
args:
|
||||
old.rustPlatform.buildRustPackage (
|
||||
args
|
||||
// {
|
||||
version = "0.4.6";
|
||||
src = prev.fetchFromGitHub {
|
||||
owner = "girlbossceo";
|
||||
repo = "conduwuit";
|
||||
rev = "c7ae9516767dff6767a725be3d144164c0d1ad56";
|
||||
hash = "sha256-llE6EPE70iV7gGz2c2uhRAQIhRe57cYaXfA4NnbRtrM=";
|
||||
};
|
||||
cargoHash = "sha256-5KXFei6A12QrFattkbDZM2LuLueV+aKunDgy6ZAaF7E=";
|
||||
doCheck = false;
|
||||
}
|
||||
);
|
||||
};
|
||||
});
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue