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
26
pkgs/development/libraries/libopusenc/default.nix
Normal file
26
pkgs/development/libraries/libopusenc/default.nix
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
{ lib, stdenv, fetchurl, pkg-config, libopus }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libopusenc";
|
||||
version = "0.2.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://mozilla/opus/libopusenc-${version}.tar.gz";
|
||||
sha256 = "1ffb0vhlymlsq70pxsjj0ksz77yfm2x0a1x8q50kxmnkm1hxp642";
|
||||
};
|
||||
|
||||
outputs = [ "out" "dev" ];
|
||||
|
||||
doCheck = true;
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [ libopus ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Library for encoding .opus audio files and live streams";
|
||||
license = licenses.bsd3;
|
||||
homepage = "https://www.opus-codec.org/";
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ pmiddend ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue