mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
27 lines
741 B
Nix
27 lines
741 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "openelec-dvb-firmware-${version}";
|
|
version = "0.0.51";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/OpenELEC/dvb-firmware/archive/${version}.tar.gz";
|
|
sha256 = "cef3ce537d213e020af794cecf9de207e2882c375ceda39102eb6fa2580bad8d";
|
|
};
|
|
|
|
phases = [ "unpackPhase" "installPhase" ];
|
|
|
|
installPhase = ''
|
|
DESTDIR="$out" ./install
|
|
find $out \( -name 'README.*' -or -name 'LICEN[SC]E.*' -or -name '*.txt' \) | xargs rm
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "DVB firmware from OpenELEC";
|
|
homepage = https://github.com/OpenELEC/dvb-firmware;
|
|
license = licenses.unfreeRedistributableFirmware;
|
|
platforms = platforms.linux;
|
|
priority = 7;
|
|
};
|
|
}
|