08a9a9b020
Kinda icky to not have archives available here, but I got an error during VM tests because of an sha256sum mismatch, hence the update. Maybe Hydra has cached this? And yes, I checked twice, it wasn't a broken download - there really *is* a new upstream version available. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
32 lines
987 B
Nix
32 lines
987 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "radeon-juniper-firmware-2010-04-08";
|
|
|
|
srcPfp = fetchurl {
|
|
url = "http://people.freedesktop.org/~agd5f/radeon_ucode/JUNIPER_pfp.bin";
|
|
sha256 = "1qm910p7qjs6n528q22gkwpprzdh39vbihdliykbpfs1pphrhkjz";
|
|
};
|
|
srcMe = fetchurl {
|
|
url = "http://people.freedesktop.org/~agd5f/radeon_ucode/JUNIPER_me.bin";
|
|
sha256 = "1869dhay3f75hhnsvdjhlrjd4fhdi8d6c3lhk45vp7fhjiw4741q";
|
|
};
|
|
srcRlc = fetchurl {
|
|
url = "http://people.freedesktop.org/~agd5f/radeon_ucode/JUNIPER_rlc.bin";
|
|
sha256 = "0hglq8ab1f3d81mvcb4aikkfdwh6i4a93ps0f9czq1qz5h0q6wlk";
|
|
};
|
|
|
|
unpackPhase = "true";
|
|
installPhase = ''
|
|
install -D $srcPfp $out/radeon/JUNIPER_pfp.bin
|
|
install -D $srcMe $out/radeon/JUNIPER_me.bin
|
|
install -D $srcRlc $out/radeon/JUNIPER_rlc.bin
|
|
'';
|
|
|
|
meta = {
|
|
description = "Juniper firmware for the RADEON chipset";
|
|
homepage = "http://people.freedesktop.org/~agd5f/radeon_ucode";
|
|
license = "GPL";
|
|
};
|
|
}
|