about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/security/fprot/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/security/fprot/default.nix')
-rw-r--r--nixpkgs/pkgs/tools/security/fprot/default.nix42
1 files changed, 42 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/tools/security/fprot/default.nix b/nixpkgs/pkgs/tools/security/fprot/default.nix
new file mode 100644
index 000000000000..6b930adcc26b
--- /dev/null
+++ b/nixpkgs/pkgs/tools/security/fprot/default.nix
@@ -0,0 +1,42 @@
+{ lib, stdenv, fetchurl }:
+
+stdenv.mkDerivation {
+
+  pname = "f-prot";
+  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 = ''
+    mkdir -p $out/bin
+    cp fpscan $out/bin
+
+    mkdir -p $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_CC/nix-support/dynamic-linker)" $out/opt/f-prot/fpupdate
+
+    mkdir -p $out/share/man/
+    mkdir -p $out/share/man/man1
+    cp doc/man/fpscan.1 $out/share/man/man1
+    mkdir -p $out/share/man/man5
+    cp doc/man/f-prot.conf.5 $out/share/man/man5
+    mkdir -p $out/share/man/man8
+    cp doc/man/fpupdate.8 $out/share/man/man8
+  '';
+
+  meta = with lib; {
+    homepage = "http://www.f-prot.com";
+    description = "A popular proprietary antivirus program";
+    license = licenses.unfree;
+    maintainers = [ ];
+    platforms = platforms.linux;
+  };
+}