mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 10:53:11 +00:00
ce77225e21
This is the thing you want to look at.
15 lines
224 B
Nix
15 lines
224 B
Nix
{
|
|
mkKdeDerivation,
|
|
qt5compat,
|
|
qtsvg,
|
|
qttools,
|
|
qtdeclarative,
|
|
eigen,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "analitza";
|
|
|
|
extraNativeBuildInputs = [qt5compat qtsvg qttools];
|
|
extraBuildInputs = [qtdeclarative eigen];
|
|
}
|