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
34
pkgs/os-specific/linux/ebtables/default.nix
Normal file
34
pkgs/os-specific/linux/ebtables/default.nix
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
{ lib, stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "ebtables";
|
||||
version = "2.0.11";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://ftp.netfilter.org/pub/${pname}/${pname}-${version}.tar.gz";
|
||||
sha256 = "0apxgmkhsk3vxn9q3libxn3dgrdljrxyy4mli2gk49m7hi3na7xp";
|
||||
};
|
||||
|
||||
makeFlags = [
|
||||
"LIBDIR=$(out)/lib" "BINDIR=$(out)/sbin" "MANDIR=$(out)/share/man"
|
||||
"ETCDIR=$(out)/etc" "INITDIR=$(TMPDIR)" "SYSCONFIGDIR=$(out)/etc/sysconfig"
|
||||
"LOCALSTATEDIR=/var"
|
||||
];
|
||||
|
||||
NIX_CFLAGS_COMPILE = "-Wno-error";
|
||||
|
||||
preInstall = "mkdir -p $out/etc/sysconfig";
|
||||
|
||||
postInstall = ''
|
||||
ln -s $out/sbin/ebtables-legacy $out/sbin/ebtables
|
||||
ln -s $out/sbin/ebtables-legacy-restore $out/sbin/ebtables-restore
|
||||
ln -s $out/sbin/ebtables-legacy-save $out/sbin/ebtables-save
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "A filtering tool for Linux-based bridging firewalls";
|
||||
homepage = "http://ebtables.sourceforge.net/";
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue