Skip to content

Commit

Permalink
fix: issue on packegei.nix
Browse files Browse the repository at this point in the history
  • Loading branch information
jmuelbert committed Nov 8, 2024
1 parent 82fd2a7 commit 467d83b
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,28 +8,28 @@
, ut
, wrapQtAppsHook
}:
stdenv.mkDerivation = {
pname = "jmbde";
version = "0.7.0";
stdenv.mkDerivation {
pname = "jmbde";
version = "0.7.0";

src = ./.;
src = ./.;

buildInputs =[
microsoft-gsl
qtbase
qtwayland
ut
];
buildInputs = [
microsoft-gsl
qtbase
qtwayland
ut
];

nativeBuildInputs = [
cmake
mold-wrapped
ninja
wrapQtAppsHook
];
nativeBuildInputs = [
cmake
mold-wrapped
ninja
wrapQtAppsHook
];

cmakeFlags = [
"--preset=minimal"
"-DCMAKE_LINKER_TYPE=MOLD"
];
cmakeFlags = [
"--preset=minimal"
"-DCMAKE_LINKER_TYPE=MOLD"
];
}

0 comments on commit 467d83b

Please sign in to comment.