13 lines
313 B
Nix
13 lines
313 B
Nix
|
{ rustc, cargo, makeRustPlatform, cmake, pkg-config, fontconfig }:
|
||
|
|
||
|
let rustPlatform = makeRustPlatform { inherit cargo rustc; };
|
||
|
|
||
|
in rustPlatform.buildRustPackage {
|
||
|
name = "wedge";
|
||
|
src = ./.;
|
||
|
cargoLock.lockFile = ./Cargo.lock;
|
||
|
|
||
|
nativeBuildInputs = [ cmake pkg-config ];
|
||
|
buildInputs = [ fontconfig ];
|
||
|
}
|