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
70
pkgs/tools/filesystems/orangefs/default.nix
Normal file
70
pkgs/tools/filesystems/orangefs/default.nix
Normal file
|
|
@ -0,0 +1,70 @@
|
|||
{ lib, stdenv, fetchurl, fetchpatch, bison, flex, autoreconfHook
|
||||
, openssl, db, attr, perl, tcsh
|
||||
} :
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "orangefs";
|
||||
version = "2.9.8";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://download.orangefs.org/current/source/orangefs-${version}.tar.gz";
|
||||
sha256 = "0c2yla615j04ygclfavh8g5miqhbml2r0zs2c5mvkacf9in7p7sq";
|
||||
};
|
||||
|
||||
patches = [
|
||||
# Pull upstream fix for -fno-common toolchains
|
||||
(fetchpatch {
|
||||
name = "fno-common.patch";
|
||||
url = "https://github.com/waltligon/orangefs/commit/f472beb50356bea657d1c32f1ca8a73e4718fd57.patch";
|
||||
sha256 = "0jaq1ffdxgymjciddsy8h8r87nwbif4v5yv4wd7jxysn25a0hdai";
|
||||
})
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ bison flex perl autoreconfHook ];
|
||||
buildInputs = [ openssl db attr tcsh ];
|
||||
|
||||
postPatch = ''
|
||||
# Issue introduced by attr-2.4.48
|
||||
substituteInPlace src/apps/user/ofs_setdirhint.c --replace attr/xattr.h sys/xattr.h
|
||||
|
||||
# Do not try to install empty sysconfdir
|
||||
substituteInPlace Makefile.in --replace 'install -d $(sysconfdir)' ""
|
||||
|
||||
# perl interpreter needs to be fixed or build fails
|
||||
patchShebangs ./src/apps/admin/pvfs2-genconfig
|
||||
|
||||
# symlink points to a location in /usr
|
||||
rm ./src/client/webpack/ltmain.sh
|
||||
'';
|
||||
|
||||
configureFlags = [
|
||||
"--sysconfdir=/etc/orangefs"
|
||||
"--enable-shared"
|
||||
"--enable-fast"
|
||||
"--with-ssl=${lib.getDev openssl}"
|
||||
];
|
||||
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
postInstall = ''
|
||||
# install useful helper scripts
|
||||
install examples/keys/pvfs2-gen-keys.sh $out/bin
|
||||
'';
|
||||
|
||||
postFixup = ''
|
||||
for f in pvfs2-getmattr pvfs2-setmattr; do
|
||||
substituteInPlace $out/bin/$f --replace '#!/bin/csh' '#!${tcsh}/bin/tcsh'
|
||||
done
|
||||
|
||||
sed -i 's:openssl:${openssl}/bin/openssl:' $out/bin/pvfs2-gen-keys.sh
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Scale-out network file system for use on high-end computing systems";
|
||||
homepage = "http://www.orangefs.org/";
|
||||
license = with licenses; [ asl20 bsd3 gpl2 lgpl21 lgpl21Plus openldap ];
|
||||
platforms = [ "x86_64-linux" ];
|
||||
maintainers = with maintainers; [ markuskowa ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue