mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-10 16:45:51 +03:00
octave.pkgs.ocl: init at 1.1.1
This commit is contained in:
parent
bfd539942d
commit
656fbc8b4c
26
pkgs/development/octave-modules/ocl/default.nix
Normal file
26
pkgs/development/octave-modules/ocl/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ buildOctavePackage
|
||||
, lib
|
||||
, fetchurl
|
||||
}:
|
||||
|
||||
buildOctavePackage rec {
|
||||
pname = "ocl";
|
||||
version = "1.1.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
|
||||
sha256 = "0ayi5x9zk9p4zm0qsr3i94lyp5468c9d1a7mqrqjqpdvkhrw0xnm";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://octave.sourceforge.io/ocl/index.html";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ KarlJoad ];
|
||||
description = "Use OpenCL for parallelization";
|
||||
longDescription = ''
|
||||
Package using OpenCL for parallelization, mostly suitable to
|
||||
Single-Instruction-Multiple-Data (SIMD) computations, selectively
|
||||
using available OpenCL hardware and drivers.
|
||||
'';
|
||||
};
|
||||
}
|
@ -157,6 +157,8 @@ makeScope newScope (self:
|
||||
|
||||
nurbs = callPackage ../development/octave-modules/nurbs { };
|
||||
|
||||
ocl = callPackage ../development/octave-modules/ocl { };
|
||||
|
||||
signal = callPackage ../development/octave-modules/signal { };
|
||||
|
||||
symbolic = callPackage ../development/octave-modules/symbolic {
|
||||
|
Loading…
Reference in New Issue
Block a user