mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-24 22:04:20 +00:00
ce77225e21
This is the thing you want to look at.
15 lines
232 B
Nix
15 lines
232 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtdeclarative,
|
|
qttools,
|
|
pkg-config,
|
|
aspell,
|
|
hunspell,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "sonnet";
|
|
|
|
extraNativeBuildInputs = [qttools pkg-config];
|
|
extraBuildInputs = [qtdeclarative aspell hunspell];
|
|
}
|