forked from mirrors/nixpkgs
pmenu: use python2
This commit is contained in:
parent
25a9889f0e
commit
3829e93942
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchFromGitLab, pythonPackages, gnome2 }:
|
||||
{ stdenv, fetchFromGitLab, python2Packages, gnome2 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "pmenu-${version}";
|
||||
|
@ -11,11 +11,11 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "15bkvadr7ab44mc8gkdqs3w14cm498mwf72w5rjm2rdh55357jjh";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pythonPackages.wrapPython ];
|
||||
nativeBuildInputs = [ python2Packages.wrapPython ];
|
||||
|
||||
buildInputs = [ pythonPackages.pygtk gnome2.gnome_menus ];
|
||||
buildInputs = [ python2Packages.pygtk gnome2.gnome_menus ];
|
||||
|
||||
pythonPath = [ pythonPackages.pygtk ];
|
||||
pythonPath = [ python2Packages.pygtk ];
|
||||
|
||||
patchPhase = ''
|
||||
substituteInPlace install.sh --replace "/usr/local" "$out"
|
||||
|
|
Loading…
Reference in a new issue