python pyqt: add python.libPrefix
This commit is contained in:
parent
2aa37ad8a2
commit
7d08a9c877
|
@ -3,7 +3,7 @@
|
||||||
let version = "4.11.3";
|
let version = "4.11.3";
|
||||||
in
|
in
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "PyQt-x11-gpl-${version}";
|
name = "${python.libPrefix}-PyQt-x11-gpl-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/pyqt/PyQt4/PyQt-${version}/PyQt-x11-gpl-${version}.tar.gz";
|
url = "mirror://sourceforge/pyqt/PyQt4/PyQt-${version}/PyQt-x11-gpl-${version}.tar.gz";
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
let
|
let
|
||||||
version = "5.4.2";
|
version = "5.4.2";
|
||||||
in stdenv.mkDerivation {
|
in stdenv.mkDerivation {
|
||||||
name = "PyQt-${version}";
|
name = "${python.libPrefix}-PyQt-${version}";
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Python bindings for Qt5";
|
description = "Python bindings for Qt5";
|
||||||
|
|
Loading…
Reference in New Issue