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
28
pkgs/tools/misc/vorbisgain/default.nix
Normal file
28
pkgs/tools/misc/vorbisgain/default.nix
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{ lib, stdenv, fetchurl, libogg, libvorbis }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "vorbisgain";
|
||||
version = "0.37";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://sjeng.org/ftp/vorbis/vorbisgain-${version}.tar.gz";
|
||||
sha256 = "1v1h6mhnckmvvn7345hzi9abn5z282g4lyyl4nnbqwnrr98v0vfx";
|
||||
};
|
||||
|
||||
hardeningDisable = [ "format" ];
|
||||
|
||||
buildInputs = [ libogg libvorbis ];
|
||||
|
||||
patchPhase = ''
|
||||
chmod -v +x configure
|
||||
configureFlags="--mandir=$out/share/man"
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://sjeng.org/vorbisgain.html";
|
||||
description = "A utility that corrects the volume of an Ogg Vorbis file to a predefined standardized loudness";
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ pSub ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue