bb584b27e9
GitOrigin-RevId: 5181d5945eda382ff6a9ca3e072ed6ea9b547fee
10 lines
220 B
Nix
10 lines
220 B
Nix
{ mkDerivation
|
|
, extra-cmake-modules, qttools, qtbase
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "kplotting";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
propagatedBuildInputs = [ qtbase qttools ];
|
|
outputs = [ "out" "dev" ];
|
|
}
|