2009-03-09 13:29:37 +00:00
|
|
|
{stdenv, fetchurl, rpm, cpio, python, wirelesstools, gettext}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "rhpl-0.218";
|
2010-02-03 12:56:57 +00:00
|
|
|
|
2009-03-09 13:29:37 +00:00
|
|
|
src = fetchurl {
|
2013-07-13 21:58:14 +01:00
|
|
|
url = http://ftp-stud.hs-esslingen.de/pub/Mirrors/archive.fedoraproject.org/fedora/linux/releases/10/Everything/source/SRPMS//rhpl-0.218-1.src.rpm;
|
2009-03-09 13:29:37 +00:00
|
|
|
md5 = "a72c6b66df782ca1d4950959d2aad292";
|
|
|
|
};
|
2010-02-03 12:56:57 +00:00
|
|
|
|
2009-03-09 13:29:37 +00:00
|
|
|
inherit python;
|
2010-02-03 12:56:57 +00:00
|
|
|
|
2009-03-09 13:29:37 +00:00
|
|
|
builder = ./builder.sh;
|
2010-02-03 12:56:57 +00:00
|
|
|
|
2009-03-09 13:29:37 +00:00
|
|
|
buildInputs = [ rpm cpio python wirelesstools gettext ];
|
|
|
|
}
|