first version

This commit is contained in:
Marco "Capypara" Köpcke 2024-12-11 09:42:06 +01:00
commit c7b9211c18
No known key found for this signature in database
GPG key ID: 08131EE895D53BDB
16 changed files with 3268 additions and 0 deletions

32
generator/pkg.nix Normal file
View file

@ -0,0 +1,32 @@
{
rustPlatform,
cargo,
rustc,
pkg-config,
openssl,
}:
rustPlatform.buildRustPackage {
pname = "nix-jebrains-plugins-generator";
version = "0.1.0";
src = ./.;
cargoLock = {
lockFile = ./Cargo.lock;
};
nativeBuildInputs = [
pkg-config
cargo
rustc
openssl
];
buildInputs = [
openssl
];
meta = {
mainProgram = "nix-jebrains-plugins-generator";
};
}