first version
This commit is contained in:
commit
c7b9211c18
16 changed files with 3268 additions and 0 deletions
32
generator/pkg.nix
Normal file
32
generator/pkg.nix
Normal 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";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue