Merge remote-tracking branch 'origin/master' into staging-next
- Fix which python interpreters are exposed Conflicts: pkgs/top-level/all-packages.nix
This commit is contained in:
commit
6635f5b208
46
pkgs/desktops/plasma-5/3rdparty/lightly/default.nix
vendored
Normal file
46
pkgs/desktops/plasma-5/3rdparty/lightly/default.nix
vendored
Normal file
@ -0,0 +1,46 @@
|
||||
{ lib
|
||||
, mkDerivation
|
||||
, fetchFromGitHub
|
||||
, cmake
|
||||
, extra-cmake-modules
|
||||
, kdecoration
|
||||
, kcoreaddons
|
||||
, kguiaddons
|
||||
, kconfigwidgets
|
||||
, kwindowsystem
|
||||
, kiconthemes
|
||||
, qtx11extras
|
||||
}:
|
||||
|
||||
mkDerivation rec{
|
||||
pname = "lightly";
|
||||
version = "0.4.1";
|
||||
src = fetchFromGitHub {
|
||||
owner = "Luwx";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "k1fEZbhzluNlAmj5s/O9X20aCVQxlWQm/Iw/euX7cmI=";
|
||||
};
|
||||
|
||||
extraCmakeFlags=["-DBUILD_TESTING=OFF"];
|
||||
|
||||
nativeBuildInputs = [ cmake extra-cmake-modules ];
|
||||
|
||||
buildInputs = [
|
||||
kcoreaddons
|
||||
kguiaddons
|
||||
kconfigwidgets
|
||||
kwindowsystem
|
||||
kiconthemes
|
||||
qtx11extras
|
||||
kdecoration
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A modern style for qt applications";
|
||||
license = licenses.gpl2Only;
|
||||
maintainers = with maintainers; [ pasqui23 ];
|
||||
homepage = "https://github.com/Luwx/Lightly/";
|
||||
inherit (kwindowsystem.meta) platforms;
|
||||
};
|
||||
}
|
@ -162,6 +162,7 @@ let
|
||||
kwin-tiling = callPackage ./3rdparty/kwin/scripts/tiling.nix { };
|
||||
krohnkite = callPackage ./3rdparty/kwin/scripts/krohnkite.nix { };
|
||||
krunner-symbols = callPackage ./3rdparty/addons/krunner-symbols.nix { };
|
||||
lightly = callPackage ./3rdparty/lightly { };
|
||||
parachute = callPackage ./3rdparty/kwin/scripts/parachute.nix { };
|
||||
};
|
||||
|
||||
|
@ -267,6 +267,11 @@ in {
|
||||
inherit (darwin) libunwind;
|
||||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
};
|
||||
pypy37 = pypy38.override {
|
||||
self = pythonInterpreters.pypy37;
|
||||
pythonVersion = "3.7";
|
||||
sha256 = "sha256-LtAqyecQhZxBvILer7CGGXkruaJ+6qFnbHQe3t0hTdc=";
|
||||
};
|
||||
|
||||
pypy27_prebuilt = callPackage ./pypy/prebuilt.nix {
|
||||
# Not included at top-level
|
||||
|
@ -7,12 +7,12 @@
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "deezer-py";
|
||||
version = "1.2.7";
|
||||
version = "1.2.9";
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "20a99337fc22b7406f5bb9b4687535b91a61dc31998c0369c4efc76dffeb9a2c";
|
||||
sha256 = "16eacdc9c53f55d2130891c6335e88046afa0601184fd5197fee35a09e99d9cf";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ requests ];
|
||||
|
@ -13663,7 +13663,7 @@ with pkgs;
|
||||
python3Packages = python3.pkgs;
|
||||
|
||||
pythonInterpreters = callPackage ./../development/interpreters/python { };
|
||||
inherit (pythonInterpreters) python27 python37 python38 python39 python310 python311 python3Minimal pypy27 pypy38 rustpython;
|
||||
inherit (pythonInterpreters) python27 python37 python38 python39 python310 python311 python3Minimal pypy27 pypy38 pypy37 rustpython;
|
||||
|
||||
# Python package sets.
|
||||
python27Packages = python27.pkgs;
|
||||
@ -13676,6 +13676,8 @@ with pkgs;
|
||||
pypy2Packages = pypy2.pkgs;
|
||||
pypy27Packages = pypy27.pkgs;
|
||||
pypy3Packages = pypy3.pkgs;
|
||||
pypy37Packages = pypy37.pkgs;
|
||||
pypy38Packages = pypy38.pkgs;
|
||||
|
||||
py3c = callPackage ../development/libraries/py3c { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user