update flake to 25.11

This commit is contained in:
Jonas Heinrich 2026-01-17 16:20:04 +01:00
parent 3540da41b4
commit c897d6f9bc
2 changed files with 8 additions and 8 deletions

8
flake.lock generated
View file

@ -2,16 +2,16 @@
"nodes": { "nodes": {
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1754563854, "lastModified": 1768323494,
"narHash": "sha256-YzNTExe3kMY9lYs23mZR7jsVHe5TWnpwNrsPOpFs/b8=", "narHash": "sha256-yBXJLE6WCtrGo7LKiB6NOt6nisBEEkguC/lq/rP3zRQ=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "e728d7ae4bb6394bbd19eec52b7358526a44c414", "rev": "2c3e5ec5df46d3aeee2a1da0bfedd74e21f4bf3a",
"type": "github" "type": "github"
}, },
"original": { "original": {
"id": "nixpkgs", "id": "nixpkgs",
"ref": "nixos-25.05", "ref": "nixos-25.11",
"type": "indirect" "type": "indirect"
} }
}, },

View file

@ -1,7 +1,7 @@
{ {
description = "mail-quota-warning package and service"; description = "mail-quota-warning package and service";
inputs.nixpkgs.url = "nixpkgs/nixos-25.05"; inputs.nixpkgs.url = "nixpkgs/nixos-25.11";
outputs = { self, nixpkgs }: outputs = { self, nixpkgs }:
let let
@ -25,15 +25,15 @@
dependencies = with python3Packages; [ dependencies = with python3Packages; [
python python
pyyaml pyyaml
imaplib2 imaplib2
]; ];
installPhase = '' installPhase = ''
install -Dm755 ${./mail-quota-warning.py} $out/bin/mail-quota-warning install -Dm755 ${./mail-quota-warning.py} $out/bin/mail-quota-warning
''; '';
meta.mainProgram = "mail-quota-warning"; meta.mainProgram = "mail-quota-warning";
}; };
}; };