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
30
pkgs/development/libraries/tremor/default.nix
Normal file
30
pkgs/development/libraries/tremor/default.nix
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
{ lib, stdenv, fetchFromGitLab, autoreconfHook, pkg-config, libogg }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "tremor";
|
||||
version = "unstable-2018-03-16";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "xiph";
|
||||
repo = "tremor";
|
||||
domain = "gitlab.xiph.org";
|
||||
rev = "562307a4a7082e24553f3d2c55dab397a17c4b4f";
|
||||
sha256 = "0m07gq4zfgigsiz8b518xyb19v7qqp76qmp7lb262825vkqzl3zq";
|
||||
};
|
||||
|
||||
outputs = [ "out" "dev" ];
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
||||
propagatedBuildInputs = [ libogg ];
|
||||
|
||||
preConfigure = ''
|
||||
sed -i /XIPH_PATH_OGG/d configure
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = "https://xiph.org/tremor/";
|
||||
description = "Fixed-point version of the Ogg Vorbis decoder";
|
||||
license = lib.licenses.bsd3;
|
||||
platforms = lib.platforms.unix;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue