wtf: init at 0.5.7

This commit is contained in:
MikeHorn-git
2025-05-15 16:35:14 +00:00
parent 5a21e9d81b
commit 0dff8aa6a6
+4 -2
View File
@@ -26,13 +26,15 @@ stdenv.mkDerivation (finalAttrs: {
sourceRoot = "source/src";
cmakeFlags = [ "-DCMAKE_BUILD_TYPE=Release" ];
cmakeFlags = [
(lib.cmakeFeature "CMAKE_BUILD_TYPE" "Release")
];
installPhase = ''
runHook preInstall
install -Dm755 wtf $out/bin/wtf
runHook postInstall
'';