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
56
pkgs/development/libraries/gsm/default.nix
Normal file
56
pkgs/development/libraries/gsm/default.nix
Normal file
|
|
@ -0,0 +1,56 @@
|
|||
{ lib, stdenv, fetchurl
|
||||
, # Compile statically (support for packages that look for the static object)
|
||||
staticSupport ? stdenv.hostPlatform.isStatic
|
||||
}:
|
||||
|
||||
let
|
||||
inherit (stdenv) isDarwin;
|
||||
inherit (lib) optional optionalString;
|
||||
in
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "gsm";
|
||||
version = "1.0.19";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.quut.com/gsm/${pname}-${version}.tar.gz";
|
||||
sha256 = "1xkha9ss5g5qnfaybi8il0mcvp8knwg9plgh8404vh58d0pna0s9";
|
||||
};
|
||||
|
||||
patchPhase = ''
|
||||
substituteInPlace Makefile \
|
||||
--replace "= gcc " "?= gcc "
|
||||
# Fix include directory
|
||||
sed -e 's,$(GSM_INSTALL_ROOT)/inc,$(GSM_INSTALL_ROOT)/include/gsm,' -i Makefile
|
||||
'' + optionalString (!staticSupport) (
|
||||
(if isDarwin then ''
|
||||
# Build dylib on Darwin
|
||||
sed -e 's,libgsm.a,libgsm.dylib,' -i Makefile
|
||||
sed -e 's,$(AR) $(ARFLAGS) $(LIBGSM) $(GSM_OBJECTS),$(LD) -o $(LIBGSM) -dynamiclib -install_name $(GSM_INSTALL_ROOT)/$(LIBGSM) $(GSM_OBJECTS) -lc,' -i Makefile
|
||||
'' else ''
|
||||
# Build ELF shared object by default
|
||||
sed -e 's,libgsm.a,libgsm.so,' -i Makefile
|
||||
sed -e 's/$(AR) $(ARFLAGS) $(LIBGSM) $(GSM_OBJECTS)/$(LD) -shared -Wl,-soname,libgsm.so -o $(LIBGSM) $(GSM_OBJECTS) -lc/' -i Makefile
|
||||
'') + ''
|
||||
# Remove line that is unused when building shared libraries
|
||||
sed -e 's,$(RANLIB) $(LIBGSM),,' -i Makefile
|
||||
''
|
||||
);
|
||||
|
||||
makeFlags = [
|
||||
"SHELL=${stdenv.shell}"
|
||||
"INSTALL_ROOT=$(out)"
|
||||
] ++ optional stdenv.cc.isClang "CC=clang";
|
||||
|
||||
preInstall = "mkdir -p $out/{bin,lib,man/man1,man/man3,include/gsm}";
|
||||
|
||||
parallelBuild = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Lossy speech compression codec";
|
||||
homepage = "http://www.quut.com/gsm/";
|
||||
license = licenses.bsd2;
|
||||
maintainers = with maintainers; [ codyopel raskin ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue