mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 06:31:02 +00:00
Merge pull request #27983 from hhomar/openelec-dvb-firmware
openelec-dvb-firmware: init at 0.0.51
This commit is contained in:
commit
e888cfb130
|
@ -0,0 +1,26 @@
|
|||
{ 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;
|
||||
};
|
||||
}
|
|
@ -12002,6 +12002,8 @@ with pkgs;
|
|||
|
||||
linuxConsoleTools = callPackage ../os-specific/linux/consoletools { };
|
||||
|
||||
openelec-dvb-firmware = callPackage ../os-specific/linux/firmware/openelec-dvb-firmware { };
|
||||
|
||||
openiscsi = callPackage ../os-specific/linux/open-iscsi { };
|
||||
|
||||
openisns = callPackage ../os-specific/linux/open-isns { };
|
||||
|
|
Loading…
Reference in a new issue