commit 92343e3f68dfb0808963c6d919a6279fd5c6d44f
parent 8b2c228e370f2570774686f7a6c7e6b432ded79b
Author: Nikolay Korotkiy <sikmir@disroot.org>
Date: Fri, 24 Apr 2026 20:17:33 +0400
Drop how-to-use-pvs-studio-free
Diffstat:
2 files changed, 0 insertions(+), 43 deletions(-)
diff --git a/pkgs/by-name/ho/how-to-use-pvs-studio-free/package.nix b/pkgs/by-name/ho/how-to-use-pvs-studio-free/package.nix
@@ -1,38 +0,0 @@
-{
- lib,
- stdenv,
- fetchfromgh,
- cmake,
-}:
-
-stdenv.mkDerivation (finalAttrs: {
- pname = "how-to-use-pvs-studio-free";
- version = "7.41";
-
- __structuredAttrs = true;
-
- src = fetchfromgh {
- owner = "viva64";
- repo = "how-to-use-pvs-studio-free";
- tag = finalAttrs.version;
- hash = "sha256-t7gqTEMPCAC0gXYI+TMcV2XJFSZ6+eclzoF+eCWKP/c=";
- name = "how-to-use-pvs-studio-free_Source_code.tar.gz";
- };
-
- postPatch = ''
- substituteInPlace CMakeLists.txt \
- --replace-fail "set(CMAKE_INSTALL_PREFIX \"/usr\")" ""
- '';
-
- nativeBuildInputs = [ cmake ];
-
- setupHook = ./setup-hook.sh;
-
- meta = {
- description = "How to use PVS-Studio for Free?";
- homepage = "https://pvs-studio.com/en/blog/posts/0457/";
- license = lib.licenses.asl20;
- maintainers = [ lib.maintainers.sikmir ];
- platforms = lib.platforms.unix;
- };
-})
diff --git a/pkgs/by-name/ho/how-to-use-pvs-studio-free/setup-hook.sh b/pkgs/by-name/ho/how-to-use-pvs-studio-free/setup-hook.sh
@@ -1,5 +0,0 @@
-addHeaders() {
- how-to-use-pvs-studio-free -c 2 .
-}
-
-postPatchHooks+=(addHeaders)