1
0
Fork 0

weewx-proxy: init

This commit is contained in:
Daniel Kempkens 2023-06-06 16:46:20 +02:00
parent cdd6c06b30
commit 40d24adc63
Signed by: daniel
SSH key fingerprint: SHA256:Ks/MyhQYcPRQiwMKLAKquWCdCPe3JXlb1WttgnAoSeM
3 changed files with 36 additions and 4 deletions

View file

@ -43,3 +43,4 @@ jobs:
- run: nix build '.#fennel-ls'
- run: nix build '.#neovim-nightly'
- run: nix build '.#q'
- run: nix build '.#weewx-proxy'

View file

@ -65,11 +65,11 @@
},
"locked": {
"dir": "contrib",
"lastModified": 1686021327,
"narHash": "sha256-nj0dGMA31R9oH31F30FJ2K3OFBuGMTMro5J/j8bh8Co=",
"lastModified": 1686061135,
"narHash": "sha256-vqmW7ASK+uX2BFxeKMVY02s7t+vG/+akf81ZL6Hlbms=",
"owner": "neovim",
"repo": "neovim",
"rev": "780ab11b90119fb9b91d3266d6eef459228edc9a",
"rev": "175e5c8b96fe0756040fcb31f46d9c97b3957776",
"type": "github"
},
"original": {
@ -118,7 +118,31 @@
"bdfr-browser-flake": "bdfr-browser-flake",
"flake-parts": "flake-parts",
"neovim-flake": "neovim-flake",
"nixpkgs": "nixpkgs"
"nixpkgs": "nixpkgs",
"weewx-proxy-flake": "weewx-proxy-flake"
}
},
"weewx-proxy-flake": {
"inputs": {
"flake-parts": [
"flake-parts"
],
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1686062494,
"narHash": "sha256-SgAHdVijmqmlEVs8Iz8rdWBhy2OY7zzQIaQeiDKvsL8=",
"owner": "nifoc",
"repo": "weewx-proxy",
"rev": "4837ac0fbf7f24796742b72fcd2cf0d2cabdc754",
"type": "github"
},
"original": {
"owner": "nifoc",
"repo": "weewx-proxy",
"type": "github"
}
}
},

View file

@ -15,6 +15,12 @@
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-parts.follows = "flake-parts";
};
weewx-proxy-flake = {
url = "github:nifoc/weewx-proxy";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-parts.follows = "flake-parts";
};
};
outputs = inputs@{ flake-parts, ... }:
@ -53,6 +59,7 @@
vuetorrent = import ./packages/vuetorrent.nix { inherit pkgs lib; };
bdfr-browser = inputs'.bdfr-browser-flake.packages.default;
weewx-proxy = inputs'.weewx-proxy-flake.packages.default;
website-docs-nifoc-pw = import ./packages/website-docs-nifoc-pw.nix { inherit pkgs; };
} // darwinPackages;