zaphyra's git: oeffisearch

fast and simple tripplanner

commit 4ce4b5dde53c51f46a84d58a04b9ebca27d7343e
parent 7751b99321edf8fda26b3e8d77589bbd1af9bb88
Author: Katja Ramona Sophie Kwast (zaphyra) <git@zaphyra.eu>
Date: Thu, 28 May 2026 08:18:58 +0200

flake: update to `nixpkgs-26.05`
3 files changed, 7 insertions(+), 9 deletions(-)
M
flake.lock
|
8
++++----
M
flake.nix
|
2
+-
M
package.nix
|
6
++----
diff --git a/flake.lock b/flake.lock
@@ -2,16 +2,16 @@
   "nodes": {
     "nixpkgs": {
       "locked": {
-        "lastModified": 1764522689,
-        "narHash": "sha256-SqUuBFjhl/kpDiVaKLQBoD8TLD+/cTUzzgVFoaHrkqY=",
+        "lastModified": 1779622335,
+        "narHash": "sha256-ViA62qtL5za7V3d5I8OA9q9JcFhsVAiL5jVHwEclWqk=",
         "owner": "NixOS",
         "repo": "nixpkgs",
-        "rev": "8bb5646e0bed5dbd3ab08c7a7cc15b75ab4e1d0f",
+        "rev": "705e9929918b43bd7b715dc0a878ac870449bb03",
         "type": "github"
       },
       "original": {
         "owner": "NixOS",
-        "ref": "nixos-25.11",
+        "ref": "nixos-26.05",
         "repo": "nixpkgs",
         "type": "github"
       }
diff --git a/flake.nix b/flake.nix
@@ -2,7 +2,7 @@
 
   description = "trainsearch";
 
-  inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
+  inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-26.05";
 
   outputs =
     inputs:
diff --git a/package.nix b/package.nix
@@ -23,8 +23,6 @@
 stdenv.mkDerivation (finalAttrs: {
   pname = "oeffisearch";
   version = finalAttrs.env.GIT_VERSION;
-  npmHash = "sha256-YdCZ4FCzw1HtZsjcwskWZSZ/FgBsvLgMCObYLYzdXVk=";
-
   src = ./.;
 
   nativeBuildInputs = [

@@ -34,8 +32,8 @@ stdenv.mkDerivation (finalAttrs: {
 
   pnpmDeps = pnpm.fetchDeps {
     inherit (finalAttrs) pname version src;
-    hash = finalAttrs.npmHash;
-    fetcherVersion = 2;
+    hash = "sha256-FgaGGQpEWsNgMKiHlMcbQBHUmzcwG94qAohrQXGJAys=";
+    fetcherVersion = 3;
   };
 
   env = {