f44e7ef89b
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/usbguard/versions.
67 lines
1.4 KiB
Nix
67 lines
1.4 KiB
Nix
{
|
|
stdenv, fetchurl, lib,
|
|
libxslt, pandoc, asciidoctor, pkgconfig,
|
|
dbus-glib, libcap_ng, libqb, libseccomp, polkit, protobuf, qtbase, qttools, qtsvg,
|
|
audit,
|
|
libgcrypt ? null,
|
|
libsodium ? null
|
|
}:
|
|
|
|
with stdenv.lib;
|
|
|
|
assert libgcrypt != null -> libsodium == null;
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.7.4";
|
|
name = "usbguard-${version}";
|
|
|
|
repo = "https://github.com/USBGuard/usbguard";
|
|
|
|
src = fetchurl {
|
|
url = "${repo}/releases/download/${name}/${name}.tar.gz";
|
|
sha256 = "1qkskd6q5cwlh2cpcsbzmmmgk6w63z0825wlb2sjwqq3kfgwjb3k";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
libxslt
|
|
asciidoctor
|
|
pandoc # for rendering documentation
|
|
pkgconfig
|
|
];
|
|
|
|
buildInputs = [
|
|
dbus-glib
|
|
libcap_ng
|
|
libqb
|
|
libseccomp
|
|
polkit
|
|
protobuf
|
|
audit
|
|
|
|
qtbase
|
|
qtsvg
|
|
qttools
|
|
]
|
|
++ (lib.optional (libgcrypt != null) libgcrypt)
|
|
++ (lib.optional (libsodium != null) libsodium);
|
|
|
|
configureFlags = [
|
|
"--with-bundled-catch"
|
|
"--with-bundled-pegtl"
|
|
"--with-dbus"
|
|
"--with-gui-qt=qt5"
|
|
"--with-polkit"
|
|
]
|
|
++ (lib.optional (libgcrypt != null) "--with-crypto-library=gcrypt")
|
|
++ (lib.optional (libsodium != null) "--with-crypto-library=sodium");
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
description = "The USBGuard software framework helps to protect your computer against BadUSB.";
|
|
homepage = "https://usbguard.github.io/";
|
|
license = licenses.gpl2;
|
|
maintainers = [ maintainers.tnias ];
|
|
};
|
|
}
|