arandr: use python2
This commit is contained in:
parent
4443198adf
commit
7dd7b9e218
1 changed files with 6 additions and 4 deletions
|
@ -1,6 +1,8 @@
|
|||
{ stdenv, fetchurl, python, xrandr, pythonPackages }:
|
||||
{ stdenv, fetchurl, xrandr, python2Packages }:
|
||||
|
||||
pythonPackages.buildPythonApplication rec {
|
||||
let
|
||||
inherit (python2Packages) buildPythonApplication docutils pygtk;
|
||||
in buildPythonApplication rec {
|
||||
name = "arandr-0.1.9";
|
||||
|
||||
src = fetchurl {
|
||||
|
@ -15,8 +17,8 @@ pythonPackages.buildPythonApplication rec {
|
|||
# no tests
|
||||
doCheck = false;
|
||||
|
||||
buildInputs = [ pythonPackages.docutils ];
|
||||
propagatedBuildInputs = [ xrandr pythonPackages.pygtk ];
|
||||
buildInputs = [ docutils ];
|
||||
propagatedBuildInputs = [ xrandr pygtk ];
|
||||
|
||||
meta = {
|
||||
homepage = http://christian.amsuess.com/tools/arandr/;
|
||||
|
|
Loading…
Reference in a new issue