mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-08 23:03:07 +00:00
61 lines
1.2 KiB
Nix
61 lines
1.2 KiB
Nix
{ lib, stdenv
|
|
, autoPatchelfHook
|
|
, buildFHSEnv
|
|
, dpkg
|
|
, fetchurl
|
|
, gcc-unwrapped
|
|
, ocl-icd
|
|
, zlib
|
|
, extraPkgs ? []
|
|
}:
|
|
let
|
|
majMin = lib.versions.majorMinor version;
|
|
version = "7.6.21";
|
|
|
|
fahclient = stdenv.mkDerivation rec {
|
|
inherit version;
|
|
pname = "fahclient";
|
|
|
|
src = fetchurl {
|
|
url = "https://download.foldingathome.org/releases/public/release/fahclient/debian-stable-64bit/v${majMin}/fahclient_${version}_amd64.deb";
|
|
sha256 = "2827f05f1c311ee6c7eca294e4ffb856c81957e8f5bfc3113a0ed27bb463b094";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoPatchelfHook
|
|
dpkg
|
|
];
|
|
|
|
buildInputs = [
|
|
gcc-unwrapped.lib
|
|
zlib
|
|
];
|
|
|
|
unpackPhase = "dpkg-deb -x ${src} ./";
|
|
installPhase = "cp -ar usr $out";
|
|
};
|
|
in
|
|
buildFHSEnv {
|
|
name = fahclient.name;
|
|
|
|
targetPkgs = pkgs': [
|
|
fahclient
|
|
ocl-icd
|
|
] ++ extraPkgs;
|
|
|
|
runScript = "/bin/FAHClient";
|
|
|
|
extraInstallCommands = ''
|
|
mv $out/bin/$name $out/bin/FAHClient
|
|
'';
|
|
|
|
meta = {
|
|
description = "Folding@home client";
|
|
homepage = "https://foldingathome.org/";
|
|
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
|
|
license = lib.licenses.unfree;
|
|
maintainers = [ lib.maintainers.zimbatm ];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|