Python: add pname attributes to libraries
so that we can use the update script.
This commit is contained in:
@@ -1,16 +1,18 @@
|
||||
{stdenv, fetchurl, rpmextract, python, wirelesstools, gettext}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "rhpl-0.218";
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "rhpl";
|
||||
version = "0.218";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
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;
|
||||
sha256 = "0c3sc74cjzz5dmpr2gi5naxcc5p2qmzagz7k561xj07njn0ddg16";
|
||||
};
|
||||
|
||||
|
||||
inherit python;
|
||||
|
||||
|
||||
builder = ./builder.sh;
|
||||
|
||||
|
||||
buildInputs = [ rpmextract python wirelesstools gettext ];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user