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
65
pkgs/development/libraries/libaom/default.nix
Normal file
65
pkgs/development/libraries/libaom/default.nix
Normal file
|
|
@ -0,0 +1,65 @@
|
|||
{ lib, stdenv, fetchzip, yasm, perl, cmake, pkg-config, python3 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libaom";
|
||||
version = "3.3.0";
|
||||
|
||||
src = fetchzip {
|
||||
url = "https://aomedia.googlesource.com/aom/+archive/v${version}.tar.gz";
|
||||
sha256 = "sha256-g6QkKLrk+SH1s5fRmseAQMmM6y4QwmKmVDPxdbqGmwg=";
|
||||
stripRoot = false;
|
||||
};
|
||||
|
||||
patches = [ ./outputs.patch ];
|
||||
|
||||
nativeBuildInputs = [
|
||||
yasm perl cmake pkg-config python3
|
||||
];
|
||||
|
||||
preConfigure = ''
|
||||
# build uses `git describe` to set the build version
|
||||
cat > $NIX_BUILD_TOP/git << "EOF"
|
||||
#!${stdenv.shell}
|
||||
echo v${version}
|
||||
EOF
|
||||
chmod +x $NIX_BUILD_TOP/git
|
||||
export PATH=$NIX_BUILD_TOP:$PATH
|
||||
'';
|
||||
|
||||
# Configuration options:
|
||||
# https://aomedia.googlesource.com/aom/+/refs/heads/master/build/cmake/aom_config_defaults.cmake
|
||||
|
||||
cmakeFlags = [
|
||||
"-DBUILD_SHARED_LIBS=ON"
|
||||
"-DENABLE_TESTS=OFF"
|
||||
] ++ lib.optionals (stdenv.isDarwin && stdenv.isAarch64) [
|
||||
# CPU detection isn't supported on Darwin and breaks the aarch64-darwin build:
|
||||
"-DCONFIG_RUNTIME_CPU_DETECT=0"
|
||||
] ++ lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [
|
||||
"-DAS_EXECUTABLE=${stdenv.cc.targetPrefix}as"
|
||||
] ++ lib.optionals stdenv.isAarch32 [
|
||||
# armv7l-hf-multiplatform does not support NEON
|
||||
# see lib/systems/platform.nix
|
||||
"-DENABLE_NEON=0"
|
||||
];
|
||||
|
||||
postFixup = ''
|
||||
moveToOutput lib/libaom.a "$static"
|
||||
'';
|
||||
|
||||
outputs = [ "out" "bin" "dev" "static" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Alliance for Open Media AV1 codec library";
|
||||
longDescription = ''
|
||||
Libaom is the reference implementation of the AV1 codec from the Alliance
|
||||
for Open Media. It contains an AV1 library as well as applications like
|
||||
an encoder (aomenc) and a decoder (aomdec).
|
||||
'';
|
||||
homepage = "https://aomedia.org/av1-features/get-started/";
|
||||
changelog = "https://aomedia.googlesource.com/aom/+/refs/tags/v${version}/CHANGELOG";
|
||||
maintainers = with maintainers; [ primeos kiloreux ];
|
||||
platforms = platforms.all;
|
||||
license = licenses.bsd2;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue