Nixfiles/pkgs/simulationcraft.nix
Quentin Boyer e3e0011cf0 Better packaging of extra packages
Split into different files and use callPackage to build them. Also add
them to a 'package' attribute in the flake, to be able to call them
outside.
2022-11-20 21:09:17 +01:00

21 lines
289 B
Nix

{
simulationcraft-src,
stdenv,
qt5,
cmake,
curl,
}:
stdenv.mkDerivation {
pname = "simulationcraft";
version = "master";
src = simulationcraft-src;
buildInputs = [
qt5.qtbase
qt5.qtwebengine
cmake
curl
];
nativeBuildInputs = [qt5.wrapQtAppsHook];
}