zaphyra's git: haumea

fork of https://github.com/nix-community/haumea

commit 34dd58385092a23018748b50f9b23de6266dffc2
parent df4e37a56ffcadd9c9146763daaac17fb38ea8bc
Author: figsoda <figsoda@pm.me>
Date: Fri, 26 May 2023 16:33:49 -0400

bump
4 files changed, 27 insertions(+), 7 deletions(-)
M
CHANGELOG.md
|
20
++++++++++++++++++++
M
docs/flake.lock
|
6
+++---
M
flake.lock
|
6
+++---
M
templates/default/flake.nix
|
2
+-
diff --git a/CHANGELOG.md b/CHANGELOG.md
@@ -1,5 +1,25 @@
 # Changelog
 
+## v0.2.2 - 2023-05-26
+
+### Features
+
+- New [book](https://nix-community.github.io/haumea)
+- load: `loader` now also accepts a list of matchers for loading non-Nix files
+  ([#10](https://github.com/nix-community/haumea/pull/10))
+
+  The following matchers and functions available under
+  [`matchers`](https://nix-community.github.io/haumea/api/matchers.html):
+
+  - `always` always matches the file regardless of its file name
+  - `extension` matches the file by its extension
+  - `json` loads all JSON files
+  - `nix` is the default matcher if the `loader` is a function and not a list of matchers
+  - `regex` matches the file using the given regex
+  - `toml` loads all TOMl files
+
+### Features
+
 ## v0.2.1 - 2023-04-19
 
 ### Features
diff --git a/docs/flake.lock b/docs/flake.lock
@@ -2,11 +2,11 @@
   "nodes": {
     "nixpkgs": {
       "locked": {
-        "lastModified": 1683408522,
-        "narHash": "sha256-9kcPh6Uxo17a3kK3XCHhcWiV1Yu1kYj22RHiymUhMkU=",
+        "lastModified": 1684935479,
+        "narHash": "sha256-6QMMsXMr2nhmOPHdti2j3KRHt+bai2zw+LJfdCl97Mk=",
         "owner": "nixos",
         "repo": "nixpkgs",
-        "rev": "897876e4c484f1e8f92009fd11b7d988a121a4e7",
+        "rev": "f91ee3065de91a3531329a674a45ddcb3467a650",
         "type": "github"
       },
       "original": {
diff --git a/flake.lock b/flake.lock
@@ -2,11 +2,11 @@
   "nodes": {
     "nixpkgs": {
       "locked": {
-        "lastModified": 1679791877,
-        "narHash": "sha256-tTV1Mf0hPWIMtqyU16Kd2JUBDWvfHlDC9pF57vcbgpQ=",
+        "lastModified": 1681001314,
+        "narHash": "sha256-5sDnCLdrKZqxLPK4KA8+f4A3YKO/u6ElpMILvX0g72c=",
         "owner": "nix-community",
         "repo": "nixpkgs.lib",
-        "rev": "cc060ddbf652a532b54057081d5abd6144d01971",
+        "rev": "367c0e1086a4eb4502b24d872cea2c7acdd557f4",
         "type": "github"
       },
       "original": {
diff --git a/templates/default/flake.nix b/templates/default/flake.nix
@@ -1,7 +1,7 @@
 {
   inputs = {
     haumea = {
-      url = "github:nix-community/haumea/v0.2.1";
+      url = "github:nix-community/haumea/v0.2.2";
       inputs.nixpkgs.follows = "nixpkgs";
     };
     nixpkgs.url = "github:nix-community/nixpkgs.lib";