weewx-proxy: init
This commit is contained in:
parent
cdd6c06b30
commit
40d24adc63
3 changed files with 36 additions and 4 deletions
1
.github/workflows/build.yml
vendored
1
.github/workflows/build.yml
vendored
|
@ -43,3 +43,4 @@ jobs:
|
||||||
- run: nix build '.#fennel-ls'
|
- run: nix build '.#fennel-ls'
|
||||||
- run: nix build '.#neovim-nightly'
|
- run: nix build '.#neovim-nightly'
|
||||||
- run: nix build '.#q'
|
- run: nix build '.#q'
|
||||||
|
- run: nix build '.#weewx-proxy'
|
||||||
|
|
32
flake.lock
32
flake.lock
|
@ -65,11 +65,11 @@
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"dir": "contrib",
|
"dir": "contrib",
|
||||||
"lastModified": 1686021327,
|
"lastModified": 1686061135,
|
||||||
"narHash": "sha256-nj0dGMA31R9oH31F30FJ2K3OFBuGMTMro5J/j8bh8Co=",
|
"narHash": "sha256-vqmW7ASK+uX2BFxeKMVY02s7t+vG/+akf81ZL6Hlbms=",
|
||||||
"owner": "neovim",
|
"owner": "neovim",
|
||||||
"repo": "neovim",
|
"repo": "neovim",
|
||||||
"rev": "780ab11b90119fb9b91d3266d6eef459228edc9a",
|
"rev": "175e5c8b96fe0756040fcb31f46d9c97b3957776",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -118,7 +118,31 @@
|
||||||
"bdfr-browser-flake": "bdfr-browser-flake",
|
"bdfr-browser-flake": "bdfr-browser-flake",
|
||||||
"flake-parts": "flake-parts",
|
"flake-parts": "flake-parts",
|
||||||
"neovim-flake": "neovim-flake",
|
"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"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -15,6 +15,12 @@
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
inputs.flake-parts.follows = "flake-parts";
|
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, ... }:
|
outputs = inputs@{ flake-parts, ... }:
|
||||||
|
@ -53,6 +59,7 @@
|
||||||
vuetorrent = import ./packages/vuetorrent.nix { inherit pkgs lib; };
|
vuetorrent = import ./packages/vuetorrent.nix { inherit pkgs lib; };
|
||||||
|
|
||||||
bdfr-browser = inputs'.bdfr-browser-flake.packages.default;
|
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; };
|
website-docs-nifoc-pw = import ./packages/website-docs-nifoc-pw.nix { inherit pkgs; };
|
||||||
} // darwinPackages;
|
} // darwinPackages;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue