examples,pkgs,pkgs.ch-proxy: init

This commit is contained in:
Else, Someone 2025-09-17 15:51:59 +03:00
parent 81effc1ef3
commit 12e95630b1
4 changed files with 262 additions and 0 deletions

26
pkgs/ch-proxy/package.nix Normal file
View file

@ -0,0 +1,26 @@
{
lib,
stdenv,
meson,
ninja,
}:
stdenv.mkDerivation {
pname = "ch-proxy";
version = "0.0.0";
nativeBuildInputs = [
meson
ninja
];
src =
let
fs = lib.fileset;
in
fs.toSource {
fileset = fs.unions [
./proxy.c
./meson.build
];
root = ./.;
};
}