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
29
pkgs/tools/networking/pacparser/default.nix
Normal file
29
pkgs/tools/networking/pacparser/default.nix
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
{ lib, stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "pacparser";
|
||||
version = "1.3.7";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/manugarg/pacparser/releases/download/${version}/${pname}-${version}.tar.gz";
|
||||
sha256 = "0jfjm8lqyhdy9ny8a8icyd4rhclhfn608cr1i15jml82q8pyqj7b";
|
||||
};
|
||||
|
||||
makeFlags = [ "NO_INTERNET=1" ];
|
||||
|
||||
preConfigure = ''
|
||||
export makeFlags="$makeFlags PREFIX=$out"
|
||||
patchShebangs tests/runtests.sh
|
||||
cd src
|
||||
'';
|
||||
|
||||
hardeningDisable = [ "format" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A library to parse proxy auto-config (PAC) files";
|
||||
homepage = "http://pacparser.manugarg.com/";
|
||||
license = licenses.lgpl3;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue