90 lines
1.9 KiB
Nix
90 lines
1.9 KiB
Nix
|
{ stdenv
|
||
|
, lib
|
||
|
, fetchFromGitHub
|
||
|
, autoreconfHook
|
||
|
, installShellFiles
|
||
|
, nixosTests
|
||
|
, asciidoc
|
||
|
, pkg-config
|
||
|
, libxslt
|
||
|
, libxml2
|
||
|
, docbook_xml_dtd_45
|
||
|
, docbook_xsl
|
||
|
, dbus-glib
|
||
|
, libcap_ng
|
||
|
, libqb
|
||
|
, libseccomp
|
||
|
, polkit
|
||
|
, protobuf
|
||
|
, audit
|
||
|
, libsodium
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
version = "1.1.3";
|
||
|
pname = "usbguard";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "USBGuard";
|
||
|
repo = pname;
|
||
|
rev = "usbguard-${version}";
|
||
|
hash = "sha256-8y8zaKJfoIXc9AvG1wi3EzZA7BR2wVFLuOyD+zpBY0s=";
|
||
|
fetchSubmodules = true;
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
autoreconfHook
|
||
|
installShellFiles
|
||
|
asciidoc
|
||
|
pkg-config
|
||
|
libxslt # xsltproc
|
||
|
libxml2 # xmllint
|
||
|
docbook_xml_dtd_45
|
||
|
docbook_xsl
|
||
|
dbus-glib # gdbus-codegen
|
||
|
protobuf # protoc
|
||
|
];
|
||
|
|
||
|
buildInputs = [
|
||
|
dbus-glib
|
||
|
libcap_ng
|
||
|
libqb
|
||
|
libseccomp
|
||
|
libsodium
|
||
|
polkit
|
||
|
protobuf
|
||
|
audit
|
||
|
];
|
||
|
|
||
|
configureFlags = [
|
||
|
"--with-bundled-catch"
|
||
|
"--with-bundled-pegtl"
|
||
|
"--with-dbus"
|
||
|
"--with-crypto-library=sodium"
|
||
|
"--with-polkit"
|
||
|
];
|
||
|
|
||
|
enableParallelBuilding = true;
|
||
|
|
||
|
postInstall = ''
|
||
|
installShellCompletion --bash --name usbguard.bash scripts/bash_completion/usbguard
|
||
|
installShellCompletion --zsh --name _usbguard scripts/usbguard-zsh-completion
|
||
|
'';
|
||
|
|
||
|
passthru.tests = nixosTests.usbguard;
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "USBGuard software framework helps to protect your computer against BadUSB";
|
||
|
longDescription = ''
|
||
|
USBGuard is a software framework for implementing USB device authorization
|
||
|
policies (what kind of USB devices are authorized) as well as method of
|
||
|
use policies (how a USB device may interact with the system). Simply put,
|
||
|
it is a USB device whitelisting tool.
|
||
|
'';
|
||
|
homepage = "https://usbguard.github.io/";
|
||
|
license = licenses.gpl2Plus;
|
||
|
platforms = platforms.linux;
|
||
|
maintainers = [ maintainers.tnias ];
|
||
|
};
|
||
|
}
|