mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 22:32:58 +03:00
Python 2.7: increase priority - fixup
From the manual: > This attribute should be a number, with a higher value denoting a lower priority. The default priority is 0. Just passing -5 or -10 wasn't sufficient, so let's make it -100.
This commit is contained in:
parent
57afc0f5ef
commit
079353e208
@ -223,6 +223,6 @@ in stdenv.mkDerivation {
|
|||||||
maintainers = with stdenv.lib.maintainers; [ chaoflow domenkozar ];
|
maintainers = with stdenv.lib.maintainers; [ chaoflow domenkozar ];
|
||||||
# Higher priority than Python 3.x so that `/bin/python` points to `/bin/python2`
|
# Higher priority than Python 3.x so that `/bin/python` points to `/bin/python2`
|
||||||
# in case both 2 and 3 are installed.
|
# in case both 2 and 3 are installed.
|
||||||
priority = 5;
|
priority = -100;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user