Skip to content

Instantly share code, notes, and snippets.

@idontgetoutmuch
Last active August 19, 2019 11:47
Show Gist options
  • Select an option

  • Save idontgetoutmuch/0d633d3df1952f551c7fb9acc76aa8e8 to your computer and use it in GitHub Desktop.

Select an option

Save idontgetoutmuch/0d633d3df1952f551c7fb9acc76aa8e8 to your computer and use it in GitHub Desktop.
let my-blas-ffi = nixpkgs.haskellPackages.callPackage ../blas-ffi/default.nix {};
in
{ mkDerivation, base, blas-ffi, blaze-html, boxes, ChasingBottoms
, comfort-array, data-ref, deepseq, fixed-length
, guarded-allocation, hyper, lapack-ffi, lazyio, 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
];
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;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment