wtf: init at 0.5.7 (#407342)

This commit is contained in:
Yohann Boniface
2025-05-16 21:48:11 +02:00
committed by GitHub
3 changed files with 56 additions and 1 deletions
+6
View File
@@ -16077,6 +16077,12 @@
githubId = 978196;
name = "Michaël Faille";
};
mikehorn = {
email = "mikehornproton@proton.me";
github = "MikeHorn-git";
githubId = 123373126;
name = "Mike Horn";
};
mikesperber = {
email = "sperber@deinprogramm.de";
github = "mikesperber";
+50
View File
@@ -0,0 +1,50 @@
{
lib,
fetchFromGitHub,
stdenv,
cmake,
ninja,
pkg-config,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "wtf";
version = "0.5.7";
src = fetchFromGitHub {
owner = "0vercl0k";
repo = "wtf";
tag = "v${finalAttrs.version}";
hash = "sha256-lfPx9RQEW457VQkDbvu/D9EFZrdNLz2ToQ9dfa7+tzY=";
};
nativeBuildInputs = [
cmake
ninja
pkg-config
];
sourceRoot = "source/src";
cmakeFlags = [
(lib.cmakeFeature "CMAKE_BUILD_TYPE" "Release")
];
installPhase = ''
runHook preInstall
install -Dm755 wtf $out/bin/wtf
runHook postInstall
'';
meta = {
description = "Cross-platform snapshot-based fuzzer";
homepage = "https://github.com/0vercl0k/wtf";
changelog = "https://github.com/0vercl0k/wtf/releases/tag/v${finalAttrs.version}";
license = lib.licenses.mit;
platforms = with lib.platforms; [ "x86_64-linux" ];
maintainers = with lib.maintainers; [ mikehorn ];
mainProgram = "wtf";
};
})
-1
View File
@@ -1979,7 +1979,6 @@ mapAliases {
wmii_hg = wmii;
wrapGAppsHook = wrapGAppsHook3; # Added 2024-03-26
write_stylus = styluslabs-write-bin; # Added 2024-10-09
wtf = lib.warnOnInstantiate "'wtf' has been renamed to 'wtfutil'." wtfutil; # Added 2025-03-01
### X ###