Ooops, forgot to add this file prior to committing.

svn path=/nixpkgs/trunk/; revision=28781
This commit is contained in:
Peter Simons 2011-08-23 12:16:41 +00:00
parent 35261ff739
commit ad090c5877
1 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "radeon-juniper-pfp-firmware-2010-04-08";
src = fetchurl {
url = "http://people.freedesktop.org/~agd5f/radeon_ucode/JUNIPER_pfp.bin";
sha256 = "1qm910p7qjs6n528q22gkwpprzdh39vbihdliykbpfs1pphrhkjz";
};
unpackPhase = "true";
installPhase = "install -D $src $out/radeon/JUNIPER_pfp.bin";
meta = {
description = "Juniper-pfp firmware for the RADEON chipset";
homepage = "http://people.freedesktop.org/~agd5f/radeon_ucode";
license = "GPL";
};
}