forked from rarias/bscpkgs
tasycl: init at 2.0.0
This commit is contained in:
40
pkgs/tasycl/default.nix
Normal file
40
pkgs/tasycl/default.nix
Normal file
@@ -0,0 +1,40 @@
|
||||
{ intelPackages
|
||||
, fetchFromGitHub
|
||||
, automake
|
||||
, autoconf
|
||||
, libtool
|
||||
, gnumake
|
||||
, autoreconfHook
|
||||
, boost
|
||||
}:
|
||||
|
||||
intelPackages.stdenv.mkDerivation rec {
|
||||
pname = "tasycl";
|
||||
version = "2.0.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "bsc-pm";
|
||||
repo = "tasycl";
|
||||
rev = version;
|
||||
hash = "sha256-Z4d45baVBhE9NW8Ww948M78TJx7BpxTr9pGJvJO9hdI=";
|
||||
};
|
||||
|
||||
enableParallelBuilding = true;
|
||||
separateDebugInfo = true;
|
||||
|
||||
nativeBuildInputs = [
|
||||
autoreconfHook
|
||||
automake
|
||||
autoconf
|
||||
libtool
|
||||
gnumake
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
boost
|
||||
];
|
||||
|
||||
configureFlags = [ "--with-sycl-include=${intelPackages.icx.cc}/include/sycl" ];
|
||||
|
||||
hardeningDisable = [ "all" ];
|
||||
}
|
||||
Reference in New Issue
Block a user