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
25
pkgs/development/libraries/mpfi/default.nix
Normal file
25
pkgs/development/libraries/mpfi/default.nix
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{lib, stdenv, fetchurl, autoreconfHook, texinfo, mpfr}:
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "mpfi";
|
||||
version = "1.5.4";
|
||||
file_nr = "38111";
|
||||
|
||||
src = fetchurl {
|
||||
# NOTE: the file_nr is whats important here. The actual package name (including the version)
|
||||
# is ignored. To find out the correct file_nr, go to https://gforge.inria.fr/projects/mpfi/
|
||||
# and click on Download in the section "Latest File Releases".
|
||||
url = "https://gforge.inria.fr/frs/download.php/file/${file_nr}/mpfi-${version}.tgz";
|
||||
sha256 = "sha256-Ozk4WV1yCvF5c96vcnz8DdQcixbCCtwQOpcPSkOuOlY=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook texinfo ];
|
||||
buildInputs = [ mpfr ];
|
||||
|
||||
meta = {
|
||||
description = "A multiple precision interval arithmetic library based on MPFR";
|
||||
homepage = "https://gforge.inria.fr/projects/mpfi/";
|
||||
license = lib.licenses.lgpl21Plus;
|
||||
maintainers = [lib.maintainers.raskin];
|
||||
platforms = lib.platforms.unix;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue