aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/qrupdate
diff options
context:
space:
mode:
authorRob Vermaas <rob.vermaas@gmail.com>2010-08-02 11:20:39 +0000
committerRob Vermaas <rob.vermaas@gmail.com>2010-08-02 11:20:39 +0000
commit70c6ab18a3a3b1ab41a0a866cd3a3ac1a93377fe (patch)
treecc4c165392fd2c68fcbbf86dea34ca11bccb8834 /pkgs/development/libraries/qrupdate
parent21580dc847476d9e450ec30cbcd4474452e9d778 (diff)
added qrupdate, suitesparse needed to build octave from source
svn path=/nixpkgs/trunk/; revision=22867
Diffstat (limited to 'pkgs/development/libraries/qrupdate')
-rw-r--r--pkgs/development/libraries/qrupdate/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/development/libraries/qrupdate/default.nix b/pkgs/development/libraries/qrupdate/default.nix
new file mode 100644
index 000000000000..ee3416172308
--- /dev/null
+++ b/pkgs/development/libraries/qrupdate/default.nix
@@ -0,0 +1,19 @@
+{ stdenv
+, fetchurl
+, gfortran
+, blas
+, liblapack
+}:
+stdenv.mkDerivation {
+ name = "qrupdate-1.1.1";
+ src = fetchurl {
+ url = mirror://sourceforge/qrupdate/1.1/qrupdate-1.1.1.tar.gz ;
+ sha256 = "0ak68qd15zccr2d2qahxcxsrcdgxy7drg362jj9swv7rb39h00cz";
+ };
+
+ preConfigure = ''
+ export PREFIX=$out
+ '';
+
+ buildInputs = [gfortran blas liblapack] ;
+}