cordial/default.nix
2023-03-17 03:41:24 -05:00

9 lines
140 B
Nix

{ stdenv, cmake, qt6 }:
stdenv.mkDerivation {
name = "cordial";
src = ./.;
buildInputs = [ qt6.full ];
nativeBuildInputs = [ ];
}