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/servers/asterisk/sccp/default.nix
Normal file
34
pkgs/servers/asterisk/sccp/default.nix
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
{ lib, stdenv, fetchFromGitHub, binutils-unwrapped, patchelf, asterisk }:
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "asterisk-module-sccp";
|
||||
version = "4.3.4";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "chan-sccp";
|
||||
repo = "chan-sccp";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-YGHK4A03Ba/tnVTnu9VuhIy/xQ5C/7ZX8h9mxqKsnZI=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ patchelf ];
|
||||
|
||||
configureFlags = [ "--with-asterisk=${asterisk}" ];
|
||||
|
||||
installFlags = [ "DESTDIR=/build/dest" "DATAROOTDIR=/build/dest" ];
|
||||
|
||||
postInstall = ''
|
||||
mkdir -p "$out"
|
||||
cp -r /build/dest/${asterisk}/* "$out"
|
||||
'';
|
||||
|
||||
postFixup = ''
|
||||
p="$out/lib/asterisk/modules/chan_sccp.so"
|
||||
patchelf --set-rpath "$p:${lib.makeLibraryPath [ binutils-unwrapped ]}" "$p"
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Replacement for the SCCP channel driver in Asterisk";
|
||||
license = licenses.gpl1Only;
|
||||
maintainers = with maintainers; [ das_j ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue