Skip to content

Commit 32f5f6e

Browse files
Merge pull request #54598 from nextcloud/chore/flake/haze
2 parents d863518 + e2d028a commit 32f5f6e

File tree

2 files changed

+115
-4
lines changed

2 files changed

+115
-4
lines changed

flake.lock

Lines changed: 108 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,13 @@
22
inputs = {
33
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
44
flake-utils.url = "github:numtide/flake-utils";
5+
haze = {
6+
url = "git+https://codeberg.org/icewind/haze.git";
7+
inputs.nixpkgs.follows = "nixpkgs";
8+
};
59
};
610

7-
outputs = { nixpkgs, flake-utils, ... }:
11+
outputs = { nixpkgs, flake-utils, haze, ... }:
812
flake-utils.lib.eachDefaultSystem (system:
913
let
1014
pkgs = nixpkgs.legacyPackages.${system};
@@ -81,6 +85,8 @@
8185
# Preview generation
8286
pkgs.ffmpeg
8387
pkgs.libreoffice
88+
89+
haze.packages.${system}.default
8490
];
8591
};
8692
}

0 commit comments

Comments
 (0)