2014-10-19 16:16:59 -07:00
|
|
|
{stdenv, fetchurl, rpmextract, python, wirelesstools, gettext}:
|
2009-03-09 06:29:37 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "rhpl-0.218";
|
2010-02-03 04:56:57 -08:00
|
|
|
|
2009-03-09 06:29:37 -07:00
|
|
|
src = fetchurl {
|
2013-07-13 13:58:14 -07: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;
|
2016-09-10 11:04:49 -07:00
|
|
|
sha256 = "0c3sc74cjzz5dmpr2gi5naxcc5p2qmzagz7k561xj07njn0ddg16";
|
2009-03-09 06:29:37 -07:00
|
|
|
};
|
2010-02-03 04:56:57 -08:00
|
|
|
|
2009-03-09 06:29:37 -07:00
|
|
|
inherit python;
|
2010-02-03 04:56:57 -08:00
|
|
|
|
2009-03-09 06:29:37 -07:00
|
|
|
builder = ./builder.sh;
|
2010-02-03 04:56:57 -08:00
|
|
|
|
2014-10-19 16:16:59 -07:00
|
|
|
buildInputs = [ rpmextract python wirelesstools gettext ];
|
2009-03-09 06:29:37 -07:00
|
|
|
}
|