switch flake to unstable, set ver to 1.0.0

This commit is contained in:
Aaron Bieber 2024-03-23 06:21:35 -06:00
parent 1f42439703
commit 4775ea1e30
No known key found for this signature in database
2 changed files with 7 additions and 8 deletions

8
flake.lock generated
View File

@ -2,16 +2,16 @@
"nodes": { "nodes": {
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1688392541, "lastModified": 1711001935,
"narHash": "sha256-lHrKvEkCPTUO+7tPfjIcb7Trk6k31rz18vkyqmkeJfY=", "narHash": "sha256-URtGpHue7HHZK0mrHnSf8wJ6OmMKYSsoLmJybrOLFSQ=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "ea4c80b39be4c09702b0cb3b42eab59e2ba4f24b", "rev": "20f77aa09916374aa3141cbc605c955626762c9a",
"type": "github" "type": "github"
}, },
"original": { "original": {
"id": "nixpkgs", "id": "nixpkgs",
"ref": "nixos-22.11", "ref": "nixos-unstable",
"type": "indirect" "type": "indirect"
} }
}, },

View File

@ -1,7 +1,7 @@
{ {
description = "po: pushover notification tool"; description = "po: pushover notification tool";
inputs.nixpkgs.url = "nixpkgs/nixos-22.11"; inputs.nixpkgs.url = "nixpkgs/nixos-unstable";
outputs = { self, nixpkgs }: outputs = { self, nixpkgs }:
let let
@ -18,11 +18,10 @@
in { in {
po = pkgs.buildGoModule { po = pkgs.buildGoModule {
pname = "po"; pname = "po";
version = "v0.0.0"; version = "v1.0.0";
src = ./.; src = ./.;
vendorHash = "sha256-5XxgYk1zkH9Txsb/A4s/zUdBKRaOzAHOxD58cqEV4ck="; vendorHash = "sha256-ftBMG3c5uDkNiOiZvO/ixa8FOrMfE8VM1AmLTSlYu2o=";
proxyVendor = true;
}; };
}); });