honggfuzz: remove unused let in

This commit is contained in:
Sandro Jäckel 2022-05-28 00:47:00 +02:00
parent 1c3d61e8aa
commit 01e26ef209
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -1,8 +1,7 @@
{ lib, stdenv, fetchFromGitHub, callPackage, makeWrapper, clang, llvm, libbfd
, libopcodes, libunwind, libblocksruntime }:
let
honggfuzz = stdenv.mkDerivation rec {
stdenv.mkDerivation rec {
pname = "honggfuzz";
version = "2.5";
@ -47,5 +46,4 @@ let
platforms = [ "x86_64-linux" ];
maintainers = with lib.maintainers; [ cpu chivay ];
};
};
in honggfuzz
}