Compare commits

...

3 commits

Author SHA1 Message Date
lelgenio
f34c2d9289 update "5.7.0" -> "5.8.0" 2025-07-07 01:44:48 +00:00
Armin Veres
49adbb1edf docs: Update README.md
Add missing system variable from package.
2025-06-08 16:18:35 -03:00
lelgenio
aa9eb93058 update "5.6.6" -> "5.7.0" 2025-06-03 23:56:47 -03:00
2 changed files with 7 additions and 4 deletions

View file

@ -62,7 +62,10 @@ Flake users are assumed to have a `flake.nix` file and a `configuration.nix`.
modules = [
{
environment.systemPackages = [
inputs.dzgui-nix.packages.default
# add your system architecture as variable
inputs.dzgui-nix.packages.${<your-system>}.default
# or specify manually.
inputs.dzgui-nix.packages.x86_64-linux.default
];
}
# other modules...

View file

@ -15,14 +15,14 @@
}:
stdenv.mkDerivation rec {
pname = "dzgui";
version = "5.6.6";
version = "5.8.0";
src = fetchFromGitea {
domain = "codeberg.org";
owner = "aclist";
repo = "dztui";
rev = "82d2afb1f2089f52dfb3bad07bf643dd6c128dc2";
hash = "sha256-HBaju98s3m59IW3kAePagF56Am4ndrYNfsCPobtxRSg=";
rev = "321384dc7bd44339568a3f63630e5fc13a644fc9";
hash = "sha256-eXNjxv7oLHer1raj0WgIi6OCrXVtkeiFJFGsg2F+FjI=";
};
postPatch = ''