summary refs log tree commit diff
path: root/pkgs/misc
diff options
context:
space:
mode:
authorzimbatm <zimbatm@zimbatm.com>2020-03-09 23:07:37 +0100
committerJon <jonringer@users.noreply.github.com>2020-03-14 13:01:26 -0700
commit001be890f78f04df86938f44c0761676e299ceac (patch)
treeaa189b0d35ea6e5733e2c95d2e4e2377c11bcb07 /pkgs/misc
parentb6fe12b1cc699376eb8cb9281362215290be8a90 (diff)
downloadnixpkgs-001be890f78f04df86938f44c0761676e299ceac.tar
nixpkgs-001be890f78f04df86938f44c0761676e299ceac.tar.gz
nixpkgs-001be890f78f04df86938f44c0761676e299ceac.tar.bz2
nixpkgs-001be890f78f04df86938f44c0761676e299ceac.tar.lz
nixpkgs-001be890f78f04df86938f44c0761676e299ceac.tar.xz
nixpkgs-001be890f78f04df86938f44c0761676e299ceac.tar.zst
nixpkgs-001be890f78f04df86938f44c0761676e299ceac.zip
folding@home: 6.02 -> 7.5.1
The v7 series is very different.

This commit introduces the 3 packages: fahclient, fahcontrol and
fahviewer. It also rebuilds the NixOS module to map better with the new
client.
Diffstat (limited to 'pkgs/misc')
-rw-r--r--pkgs/misc/foldingathome/default.nix36
1 files changed, 0 insertions, 36 deletions
diff --git a/pkgs/misc/foldingathome/default.nix b/pkgs/misc/foldingathome/default.nix
deleted file mode 100644
index 1aae47e603b..00000000000
--- a/pkgs/misc/foldingathome/default.nix
+++ /dev/null
@@ -1,36 +0,0 @@
-{stdenv, fetchurl}:
-
-stdenv.mkDerivation {
-  name = "folding-at-home-6.02";
-
-  src = fetchurl {
-    url = http://www.stanford.edu/group/pandegroup/folding/release/FAH6.02-Linux.tgz;
-    sha256 = "01nwi0lb4vv0xg4k04i2fbf5v5qgabl70jm5cgvw1ibgqjz03910";
-  };
-
-  unpackPhase = "tar xvzf $src";
-
-  # Otherwise it doesn't work at all, even ldd thinks it's not a dynamic executable
-  dontStrip = true;
-
-  # This program, to run with '-smp', wants to execute the program mpiexec
-  # as "./mpiexec", although it also expects to write the data files into "."
-  # I suggest, if someone wants to run it, in the data directory set a link
-  # to the store for 'mpiexec', so './mpiexec' will work. That link better
-  # be considered a gcroot.
-  installPhase = ''
-    BINFILES="fah6 mpiexec";
-    for a in $BINFILES; do
-      patchelf --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) $a
-    done
-    mkdir -p $out/bin
-    cp $BINFILES $out/bin
-  '';
-
-  meta = {
-    homepage = http://folding.stanford.edu/;
-    description = "Folding@home distributed computing client";
-    license = stdenv.lib.licenses.unfree;
-    platforms = [ "i686-linux" ];
-  };
-}