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

View File

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

View File

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