summary refs log tree commit diff
path: root/pkgs/os-specific/linux/firmware/openelec-dvb-firmware/default.nix
blob: 4ef9370c8444a0033e2c6e9330e97fd6af5c0d97 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ lib, stdenv, fetchurl }:

stdenv.mkDerivation rec {
  pname = "openelec-dvb-firmware";
  version = "0.0.51";

  src = fetchurl {
    url = "https://github.com/OpenELEC/dvb-firmware/archive/${version}.tar.gz";
    sha256 = "cef3ce537d213e020af794cecf9de207e2882c375ceda39102eb6fa2580bad8d";
  };

  installPhase = ''
    runHook preInstall

    DESTDIR="$out" ./install
    find $out \( -name 'README.*' -or -name 'LICEN[SC]E.*' -or -name '*.txt' \) | xargs rm

    runHook postInstall
  '';

  meta = with lib; {
    description = "DVB firmware from OpenELEC";
    homepage = "https://github.com/OpenELEC/dvb-firmware";
    license = licenses.unfreeRedistributableFirmware;
    platforms = platforms.linux;
    priority = 7;
  };
}