mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-15 01:15:51 +00:00
9e4acec7f2
CMake cross continues to be very scuffed.
19 lines
342 B
Nix
19 lines
342 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtsvg,
|
|
qttools,
|
|
qtwebchannel,
|
|
qtwebengine,
|
|
qt5compat,
|
|
pkg-config,
|
|
hunspell,
|
|
kdoctools,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "ghostwriter";
|
|
|
|
extraNativeBuildInputs = [pkg-config];
|
|
extraBuildInputs = [qtsvg qttools qtwebchannel qtwebengine qt5compat kdoctools hunspell];
|
|
meta.mainProgram = "ghostwriter";
|
|
}
|