Compare commits

..

4 Commits

Author SHA1 Message Date
github-actions[bot]
822bd46cd9 flake: update inputs
Flake lock file updates:

• Updated input 'nixpkgs':
    'github:NixOS/nixpkgs/dad564433178067be1fbdfcce23b546254b6d641' (2025-02-20)
  → 'github:NixOS/nixpkgs/2d068ae5c6516b2d04562de50a58c682540de9bf' (2025-02-23)
2025-02-24 06:52:31 +00:00
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": 1739667012,
"narHash": "sha256-6QWdUgz2O2Mm+pYx/AYB4Rot5/s1OR1C6bt30TI81yY=",
"lastModified": 1740303746,
"narHash": "sha256-XcdiWLEhjJkMxDLKQJ0CCivmYYCvA5MDxu9pMybM5kM=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "1dcdd535fef84d4671129a10e7072d56dca9a4d3",
"rev": "2d068ae5c6516b2d04562de50a58c682540de9bf",
"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;