10 lines
140 B
Nix
10 lines
140 B
Nix
|
{ stdenv, cmake, qt6 }:
|
||
|
|
||
|
stdenv.mkDerivation {
|
||
|
name = "cordial";
|
||
|
src = ./.;
|
||
|
|
||
|
buildInputs = [ qt6.full ];
|
||
|
nativeBuildInputs = [ ];
|
||
|
}
|