examples,pkgs,pkgs.ch-proxy: init
This commit is contained in:
parent
81effc1ef3
commit
12e95630b1
4 changed files with 262 additions and 0 deletions
26
pkgs/ch-proxy/package.nix
Normal file
26
pkgs/ch-proxy/package.nix
Normal 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 = ./.;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue