F-Prot: package
This commit is contained in:
parent
8c9bef04a6
commit
0b112cb489
41
pkgs/tools/security/fprot/default.nix
Normal file
41
pkgs/tools/security/fprot/default.nix
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
{ stdenv, fetchurl }:
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
|
||||||
|
name = "f-prot-${version}";
|
||||||
|
version = "6.2.1";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = http://files.f-prot.com/files/unix-trial/fp-Linux.x86.32-ws.tar.gz;
|
||||||
|
sha256 = "0qlsrkanf0inplwv1i6hqbimdg91syf5ggd1vahsm9lhivmnr0v5";
|
||||||
|
};
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
ensureDir $out/bin
|
||||||
|
cp fpscan $out/bin
|
||||||
|
|
||||||
|
ensureDir $out/opt/f-prot
|
||||||
|
cp fpupdate $out/opt/f-prot
|
||||||
|
cp product.data.default $out/opt/f-prot/product.data
|
||||||
|
cp license.key $out/opt/f-prot/
|
||||||
|
cp f-prot.conf.default $out/opt/f-prot/f-prot.conf
|
||||||
|
ln -s $out/opt/f-prot/fpupdate $out/bin/fpupdate
|
||||||
|
|
||||||
|
patchelf --interpreter "$(cat $NIX_GCC/nix-support/dynamic-linker)" $out/opt/f-prot/fpupdate
|
||||||
|
|
||||||
|
ensureDir $out/share/man/
|
||||||
|
ensureDir $out/share/man/man1
|
||||||
|
cp doc/man/fpscan.1 $out/share/man/man1
|
||||||
|
ensureDir $out/share/man/man5
|
||||||
|
cp doc/man/f-prot.conf.5 $out/share/man/man5
|
||||||
|
ensureDir $out/share/man/man8
|
||||||
|
cp doc/man/fpupdate.8 $out/share/man/man8
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = http://www.f-prot.com;
|
||||||
|
description = "a popular proprietary antivirus, Linux workstation edition.";
|
||||||
|
license = licenses.proprietary;
|
||||||
|
maintainers = [ maintainers.phreedom ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -718,6 +718,8 @@ let
|
|||||||
|
|
||||||
fortune = callPackage ../tools/misc/fortune { };
|
fortune = callPackage ../tools/misc/fortune { };
|
||||||
|
|
||||||
|
fprot = callPackage ../tools/security/fprot { };
|
||||||
|
|
||||||
freeipmi = callPackage ../tools/system/freeipmi {};
|
freeipmi = callPackage ../tools/system/freeipmi {};
|
||||||
|
|
||||||
freetalk = callPackage ../applications/networking/instant-messengers/freetalk {
|
freetalk = callPackage ../applications/networking/instant-messengers/freetalk {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user