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
17
pkgs/development/libraries/givaro/3.nix
Normal file
17
pkgs/development/libraries/givaro/3.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{lib, stdenv, fetchurl, automake, autoconf, libtool, autoreconfHook, gmpxx}:
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "givaro";
|
||||
version = "3.8.0";
|
||||
src = fetchurl {
|
||||
url = "https://forge.imag.fr/frs/download.php/592/givaro-${version}.tar.gz";
|
||||
sha256 = "1822ksv8653a84hvcz0vxl3nk8dqz7d41ys8rplq0zjjmvb2i5yq";
|
||||
};
|
||||
nativeBuildInputs = [ autoreconfHook autoconf automake ];
|
||||
buildInputs = [libtool gmpxx];
|
||||
meta = {
|
||||
description = "A C++ library for arithmetic and algebraic computations";
|
||||
license = lib.licenses.cecill-b;
|
||||
maintainers = [lib.maintainers.raskin];
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue