Compare commits

...

3 Commits

Author SHA1 Message Date
242f3e0052
psst: cargoSha256 -> cargoHash
Some checks failed
CI / checks (nur) (push) Successful in 4m4s
CI / build-and-update (xeals, xeals) (push) Failing after 3m12s
Update flake inputs / update-flake (push) Failing after 2m35s
2025-02-22 15:34:41 +11:00
c340ee3659
flake: update inputs 2025-02-22 15:22:28 +11:00
2940e7c5fb
porkbun-ddns: update APIBASE
Sometime recently Porkbun changed their basename.

> Please note that porkbun.com is no longer supported as the hostname
for our API. Please use api.porkbun.com as the correct hostname moving
forward.
2025-02-22 15:20:48 +11:00
3 changed files with 5 additions and 5 deletions

6
flake.lock generated
View File

@ -20,11 +20,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1734435836,
"narHash": "sha256-kMBQ5PRiFLagltK0sH+08aiNt3zGERC2297iB6vrvlU=",
"lastModified": 1740019556,
"narHash": "sha256-vn285HxnnlHLWnv59Og7muqECNMS33mWLM14soFIv2g=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "4989a246d7a390a859852baddb1013f825435cee",
"rev": "dad564433178067be1fbdfcce23b546254b6d641",
"type": "github"
},
"original": {

View File

@ -9,7 +9,7 @@ from dataclasses import dataclass, fields as datafields
from enum import Enum, unique
from typing import List, Optional
APIBASE = "https://porkbun.com/api/json/v3/dns"
APIBASE = "https://api.porkbun.com/api/json/v3/dns"
def dataclass_from_dict(klass: object, d: dict):

View File

@ -30,7 +30,7 @@ rustPlatform.buildRustPackage rec {
hash = "sha256-ZKhHN0ruLb6ZVKkrKv/YawRsVop6SP1QF/nrtkmA8P8=";
fetchSubmodules = true;
};
cargoSha256 = "sha256-zH6+EV78FDVOYEFXk0f54pH2Su0QpK1I0bHqzIiMdBo=";
cargoHash = "sha256-zH6+EV78FDVOYEFXk0f54pH2Su0QpK1I0bHqzIiMdBo=";
nativeBuildInputs = [ pkg-config ]
++ optional withGui copyDesktopItems;