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
36
pkgs/servers/icecast/default.nix
Normal file
36
pkgs/servers/icecast/default.nix
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
{lib, stdenv, fetchurl
|
||||
, libxml2, libxslt, curl
|
||||
, libvorbis, libtheora, speex, libkate, libopus }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "icecast";
|
||||
version = "2.4.4";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://downloads.xiph.org/releases/icecast/icecast-${version}.tar.gz";
|
||||
sha256 = "0i2d9rhav0x6js2qhjf5iy6j2a7f0d11ail0lfv40hb1kygrgda9";
|
||||
};
|
||||
|
||||
buildInputs = [ libxml2 libxslt curl libvorbis libtheora speex libkate libopus ];
|
||||
|
||||
hardeningEnable = [ "pie" ];
|
||||
|
||||
meta = {
|
||||
description = "Server software for streaming multimedia";
|
||||
|
||||
longDescription = ''
|
||||
Icecast is a streaming media server which currently supports
|
||||
Ogg (Vorbis and Theora), Opus, WebM and MP3 audio streams.
|
||||
It can be used to create an Internet radio station or a privately
|
||||
running jukebox and many things in between. It is very versatile
|
||||
in that new formats can be added relatively easily and supports
|
||||
open standards for commuincation and interaction.
|
||||
'';
|
||||
|
||||
homepage = "https://www.icecast.org";
|
||||
license = lib.licenses.gpl2;
|
||||
maintainers = with lib.maintainers; [ jcumming ];
|
||||
platforms = with lib.platforms; unix;
|
||||
};
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue