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