Python: add pname attributes to libraries

so that we can use the update script.
This commit is contained in:
Frederik Rietdijk
2017-05-27 11:25:35 +02:00
parent dce1c26e5d
commit 959842a9c7
95 changed files with 265 additions and 152 deletions

View File

@@ -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 ];
}