openvas-smb: change platform to linux only

This commit is contained in:
mi-ael 2024-10-22 21:24:21 +02:00
parent 70e46c586f
commit 84c6ef5182

View File

@ -1,16 +1,17 @@
{ fetchFromGitHub
, fetchurl
, lib
, stdenv
, cmake
, git
, pkg-config
, glib
, gnutls
, perl
, heimdal
, popt
, libunistring
{
fetchFromGitHub,
fetchurl,
lib,
stdenv,
cmake,
git,
pkg-config,
glib,
gnutls,
perl,
heimdal,
popt,
libunistring,
}:
let
heimdalConfigHeader = fetchurl {
@ -66,6 +67,6 @@ stdenv.mkDerivation rec {
license = licenses.gpl2Only;
maintainers = with maintainers; [ mi-ael ];
mainProgram = "wmic";
platforms = platforms.unix;
platforms = platforms.linux;
};
}