9405df4a82
GitOrigin-RevId: 8e4fe32876ca15e3d5eb3ecd3ca0b224417f5f17
10 lines
219 B
Nix
10 lines
219 B
Nix
{ mkDerivation
|
|
, extra-cmake-modules, qttools, qtbase
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "kplotting";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
propagatedBuildInputs = [ qtbase qttools ];
|
|
outputs = [ "out" "dev" ];
|
|
}
|