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