uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
28
pkgs/development/libraries/iml/default.nix
Normal file
28
pkgs/development/libraries/iml/default.nix
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{lib, stdenv, autoreconfHook, fetchurl, gmp, blas}:
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "iml";
|
||||
version = "1.0.5";
|
||||
src = fetchurl {
|
||||
url = "http://www.cs.uwaterloo.ca/~astorjoh/iml-${version}.tar.bz2";
|
||||
sha256 = "0akwhhz9b40bz6lrfxpamp7r7wkk48p455qbn04mfnl9a1l6db8x";
|
||||
};
|
||||
buildInputs = [
|
||||
gmp
|
||||
blas
|
||||
];
|
||||
nativeBuildInputs = [
|
||||
autoreconfHook
|
||||
];
|
||||
configureFlags = [
|
||||
"--with-gmp-include=${gmp.dev}/include"
|
||||
"--with-gmp-lib=${gmp}/lib"
|
||||
"--with-cblas=-lblas"
|
||||
];
|
||||
meta = {
|
||||
description = "Algorithms for computing exact solutions to dense systems of linear equations over the integers";
|
||||
license = lib.licenses.gpl2Plus;
|
||||
maintainers = [lib.maintainers.raskin];
|
||||
platforms = lib.platforms.unix;
|
||||
homepage = "https://cs.uwaterloo.ca/~astorjoh/iml.html";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue