mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
git-cola: build application with python3 by default
This commit is contained in:
parent
7c54149a25
commit
460e603852
1 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
{ stdenv, fetchFromGitHub, pythonPackages, gettext, git, qt5 }:
|
||||
{ stdenv, fetchFromGitHub, python3Packages, gettext, git, qt5 }:
|
||||
|
||||
let
|
||||
inherit (pythonPackages) buildPythonApplication pyqt5 sip pyinotify;
|
||||
inherit (python3Packages) buildPythonApplication pyqt5 sip pyinotify;
|
||||
|
||||
in buildPythonApplication rec {
|
||||
pname = "git-cola";
|
||||
|
|
Loading…
Reference in a new issue