Upstreamed

This commit is contained in:
kat witch 2021-08-28 20:18:02 +01:00
parent aa682d12f5
commit 1fd76ebdfe
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72
2 changed files with 0 additions and 28 deletions

View file

@ -9,7 +9,5 @@
paths = [ fusionpbx ] ++ apps;
};
libreelec-dvb-firmware = import ./libreelec-dvb-firmware/default.nix;
yggdrasil-held = import ./yggdrasil;
}

View file

@ -1,26 +0,0 @@
{ stdenv, fetchFromGitHub, lib }:
stdenv.mkDerivation rec {
name = "libreelec-fw-dvb";
version = "1.4.2";
src = fetchFromGitHub {
repo = "dvb-firmware";
owner = "LibreElec";
rev = version;
sha256 = "1xnfl4gp6d81gpdp86v5xgcqiqz2nf1i43sb3a4i5jqs8kxcap2k";
};
buildPhase = "";
installPhase = ''
mkdir -p $out/lib
cp -rv firmware $out/lib/
'';
meta = with lib; {
license = lib.licenses.unfreeRedistributableFirmware;
maintainers = with maintainers; [ kittywitch ];
platforms = with platforms; linux;
};
}