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/physics/qcdnum/default.nix
Normal file
28
pkgs/development/libraries/physics/qcdnum/default.nix
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{ lib, stdenv, fetchurl, gfortran, zlib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "QCDNUM";
|
||||
version = "17-01-15";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.nikhef.nl/user/h24/qcdnum-files/download/qcdnum${builtins.replaceStrings ["-"] [""] version}.tar.gz";
|
||||
sha256 = "0ibk1sppss45qh0g8i2c99alkx82xdbss3p55f5367bxjx4iqvvg";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ gfortran ];
|
||||
buildInputs = [ zlib ];
|
||||
|
||||
FFLAGS = [
|
||||
"-std=legacy" # fix build with gfortran 10
|
||||
];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = {
|
||||
description = "A very fast QCD evolution program written in FORTRAN77";
|
||||
license = lib.licenses.gpl3;
|
||||
homepage = "https://www.nikhef.nl/~h24/qcdnum/index.html";
|
||||
platforms = lib.platforms.unix;
|
||||
maintainers = with lib.maintainers; [ veprbl ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue