nixpkgs-suyu/pkgs/os-specific/linux/firmware/rt5677/default.nix

25 lines
600 B
Nix
Raw Normal View History

{ lib, stdenv, fetchgit }:
2016-01-10 12:02:35 +01:00
stdenv.mkDerivation {
name = "rt5677-firmware";
src = fetchgit {
url = "https://github.com/raphael/linux-samus";
rev = "995de6c2093797905fbcd79f1a3625dd3f50be37";
sha256 = "0a6lz9wadm47cmva136q6wd0lw03bmymf9ispnzb091a7skwacry";
2016-01-10 12:02:35 +01:00
};
installPhase = ''
mkdir -p $out/lib/firmware
cp ./firmware/rt5677_elf_vad $out/lib/firmware
'';
meta = with lib; {
2016-01-10 12:02:35 +01:00
description = "Firmware for Realtek rt5677 device";
license = licenses.unfreeRedistributableFirmware;
maintainers = [ maintainers.zohl ];
platforms = platforms.linux;
2016-01-10 12:02:35 +01:00
};
}