mirror of
https://github.com/traxys/Nixfiles.git
synced 2026-02-13 19:00:19 +01:00
21 lines
291 B
Nix
21 lines
291 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 ];
|
|
}
|