summaryrefslogtreecommitdiffstats
path: root/pkgs/development/compilers/bupc
diff options
context:
space:
mode:
authorft <ft@eecs.berkeley.edu>2016-04-15 13:37:17 -0700
committerzimbatm <zimbatm@zimbatm.com>2016-05-06 10:06:08 +0100
commit8ddddbfe439f65ad3766bc744abb8104bd757ea1 (patch)
tree3b55c980c7a6c836edb0f9decea41056465d1c11 /pkgs/development/compilers/bupc
parentb48172ea72f9be2bae7c3a223bc83bf9088d2ec1 (diff)
added berkeley upc
Diffstat (limited to 'pkgs/development/compilers/bupc')
-rw-r--r--pkgs/development/compilers/bupc/default.nix40
1 files changed, 40 insertions, 0 deletions
diff --git a/pkgs/development/compilers/bupc/default.nix b/pkgs/development/compilers/bupc/default.nix
new file mode 100644
index 000000000000..f22549d06e63
--- /dev/null
+++ b/pkgs/development/compilers/bupc/default.nix
@@ -0,0 +1,40 @@
+{ stdenv, fetchurl, perl, coreutils }:
+
+stdenv.mkDerivation rec {
+ name = "berkeley_upc-2.22.0";
+
+ src = fetchurl {
+ url = "http://upc.lbl.gov/download/release/${name}.tar.gz";
+ sha256 = "041l215x8z1cvjcx7kwjdgiaf9rl2d778k6kiv8q09bc68nwd44m";
+ };
+
+ postPatch = ''
+ patchShebangs .
+ '';
+
+ # Used during the configure phase
+ ENVCMD = "${coreutils}/bin/env";
+
+ nativeBuildInputs = [ coreutils ];
+ buildInputs = [ perl ];
+
+ meta = with stdenv.lib; {
+ description = "A compiler for the Berkely Unified Parallel C language";
+ longDescription = ''
+ Unified Parallel C (UPC) is an extension of the C programming language
+ designed for high performance computing on large-scale parallel
+ machines.The language provides a uniform programming model for both
+ shared and distributed memory hardware. The programmer is presented with
+ a single shared, partitioned address space, where variables may be
+ directly read and written by any processor, but each variable is
+ physically associated with a single processor. UPC uses a Single Program
+ Multiple Data (SPMD) model of computation in which the amount of
+ parallelism is fixed at program startup time, typically with a single
+ thread of execution per processor.
+ '';
+ homepage = http://upc.lbl.gov/;
+ license = licenses.mit;
+ platforms = with platforms; [ linux ];
+ maintainers = with maintainers; [ zimbatm ];
+ };
+}