Created
August 19, 2019 12:25
-
-
Save idontgetoutmuch/77463319727807c52d76e809e300721d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { mkDerivation, base, blas-ffi, blaze-html, boxes, ChasingBottoms | |
| , comfort-array, data-ref, deepseq, fixed-length | |
| , guarded-allocation, gfortran, hyper, lapack-ffi, lazyio, liblapack, monoid-transformer | |
| , netlib-ffi, non-empty, QuickCheck, quickcheck-transformer, random | |
| , semigroups, stdenv, text, tfp, transformers, unique-logic-tf | |
| , utility-ht | |
| }: | |
| mkDerivation { | |
| pname = "lapack"; | |
| version = "0.3.1"; | |
| src = ./.; | |
| libraryHaskellDepends = [ | |
| base blas-ffi blaze-html boxes comfort-array deepseq fixed-length | |
| guarded-allocation hyper lapack-ffi lazyio netlib-ffi non-empty | |
| semigroups text tfp transformers utility-ht | |
| ]; | |
| librarySystemDepends = [ liblapack gfortran ]; | |
| libraryPkgconfigDepends = [ liblapack gfortran ]; | |
| testPkgconfigDepends = [ liblapack gfortran ]; | |
| executablePkgconfigDepends = [ liblapack gfortran ]; | |
| testHaskellDepends = [ | |
| base ChasingBottoms comfort-array data-ref monoid-transformer | |
| netlib-ffi non-empty QuickCheck quickcheck-transformer random | |
| semigroups tfp transformers unique-logic-tf utility-ht | |
| ]; | |
| homepage = "http://hub.darcs.net/thielema/lapack/"; | |
| description = "Numerical Linear Algebra using LAPACK"; | |
| license = stdenv.lib.licenses.bsd3; | |
| } |
idontgetoutmuch
commented
Aug 19, 2019
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment