nix-narinfo 0.1.1.2 → 0.1.1.3
raw patch · 4 files changed
+8/−3 lines, 4 files
Files
- CHANGELOG.md +5/−0
- nix-narinfo.cabal +1/−1
- src/Nix/NarInfo/Builder.hs +1/−1
- src/Nix/NarInfo/Parser.hs +1/−1
CHANGELOG.md view
@@ -1,3 +1,8 @@+# Version [0.1.1.3](https://github.com/sorki/nix-narinfo/compare/0.1.1.2...0.1.1.3) (2026-06-11)++* Render and parse the content-address field as `CA:` to match Nix's+ case-sensitive narinfo key (was `Ca:`, which Nix silently ignored)+ # Version [0.1.1.2](https://github.com/sorki/nix-narinfo/compare/0.1.1.1...0.1.1.2) (2025-05-16) * Fix testsuite build for GHC 9.10.2 [#9](https://github.com/sorki/nix-narinfo/pull/9)
nix-narinfo.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.2 name: nix-narinfo-version: 0.1.1.2+version: 0.1.1.3 synopsis: Parse and render .narinfo files description: Support for parsing and rendering Nix .narinfo files homepage: https://github.com/sorki/nix-narinfo
src/Nix/NarInfo/Builder.hs view
@@ -48,7 +48,7 @@ <> optKey "Deriver" deriver <> optKey "System" system <> optKey "Sig" sig- <> optKey "Ca" ca+ <> optKey "CA" ca where key' k v = k <> ": " <> v <> "\n" key k v = key' k (string v)
src/Nix/NarInfo/Parser.hs view
@@ -45,7 +45,7 @@ deriver <- optKey "Deriver" system <- optKey "System" sig <- optKey "Sig"- ca <- optKey "Ca"+ ca <- optKey "CA" return $ NarInfo {..} where