packages.openfoam: version 11.20240116 -> 11.20240704
All checks were successful
nix / check (push) Successful in 2m58s

catarina: fix deprecated `sound`
This commit is contained in:
L-Nafaryus 2024-07-24 13:18:58 +05:00
parent 3e3bc38f99
commit fddbc670c6
Signed by: L-Nafaryus
GPG Key ID: 553C97999B363D38
3 changed files with 7 additions and 4 deletions

View File

@ -127,8 +127,6 @@
pulseaudio.enable = false;
};
sound.enable = true;
networking = {
networkmanager.enable = true;
useDHCP = false;

View File

@ -35,3 +35,8 @@ nixos-rebuild switch --flake ".?submodules=1#catarina" --build-host l-nafaryus@a
nix-store --verify --check-contents --repair
```
* How to get hash for package sources:
```sh
nix flake prefetch --json github:OpenFOAM/OpenFOAM-11/20240704
```

View File

@ -3,8 +3,8 @@
stdenv,
lib,
pkgs,
version ? "11.20240116",
sha256 ? "sha256-bNWlza3cL/lUrwrVEmPECvKbFkwR2rTMaccsn8amGFQ=",
version ? "11.20240704",
sha256 ? "sha256-AUApKWg9YZ0Nmz8+pOcgu6RBPfGHk0X49lERFEiV0ZM=",
...
}: let
version' = lib.strings.splitString "." version;