forked from mirrors/nixpkgs
Merge master into staging-next
This commit is contained in:
commit
b68241ff6b
|
@ -72,11 +72,14 @@ def main():
|
||||||
f"Setting session name: {session}, as we found the existing wayland-session: {session_file}"
|
f"Setting session name: {session}, as we found the existing wayland-session: {session_file}"
|
||||||
)
|
)
|
||||||
user.set_session(session)
|
user.set_session(session)
|
||||||
|
user.set_session_type("wayland")
|
||||||
elif is_session_xsession(session_file):
|
elif is_session_xsession(session_file):
|
||||||
logging.debug(
|
logging.debug(
|
||||||
f"Setting session name: {session}, as we found the existing xsession: {session_file}"
|
f"Setting session name: {session}, as we found the existing xsession: {session_file}"
|
||||||
)
|
)
|
||||||
user.set_x_session(session)
|
user.set_x_session(session)
|
||||||
|
user.set_session(session)
|
||||||
|
user.set_session_type("x11")
|
||||||
else:
|
else:
|
||||||
logging.error(f"Couldn't figure out session type for {session_file}")
|
logging.error(f"Couldn't figure out session type for {session_file}")
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
{ lib, stdenv, buildLinux, fetchFromGitHub, ... } @ args:
|
{ lib, stdenv, buildLinux, fetchFromGitHub, ... } @ args:
|
||||||
|
|
||||||
let
|
let
|
||||||
version = "5.13.5";
|
version = "5.13.7";
|
||||||
suffix = "xanmod1-cacule";
|
release = "1";
|
||||||
|
suffix = "xanmod${release}-cacule";
|
||||||
in
|
in
|
||||||
buildLinux (args // rec {
|
buildLinux (args // rec {
|
||||||
inherit version;
|
inherit version;
|
||||||
|
@ -12,7 +13,7 @@ buildLinux (args // rec {
|
||||||
owner = "xanmod";
|
owner = "xanmod";
|
||||||
repo = "linux";
|
repo = "linux";
|
||||||
rev = modDirVersion;
|
rev = modDirVersion;
|
||||||
sha256 = "sha256-Vhshu3mNkQ58TEOUBOuF7jLBlablxg/BioUyd96lI5g=";
|
sha256 = "sha256-6SppDriZWzLu6Qye1e6ciiE+Ro63vDyabxfgWS/PTSo=";
|
||||||
};
|
};
|
||||||
|
|
||||||
structuredExtraConfig = with lib.kernel; {
|
structuredExtraConfig = with lib.kernel; {
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
} :
|
} :
|
||||||
|
|
||||||
let
|
let
|
||||||
version = "35.0";
|
version = "36.0";
|
||||||
|
|
||||||
in stdenv.mkDerivation {
|
in stdenv.mkDerivation {
|
||||||
pname = "rdma-core";
|
pname = "rdma-core";
|
||||||
|
@ -13,7 +13,7 @@ in stdenv.mkDerivation {
|
||||||
owner = "linux-rdma";
|
owner = "linux-rdma";
|
||||||
repo = "rdma-core";
|
repo = "rdma-core";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "0ra0m1s0029qgcq0li7md6pkri7pcc4iy3cd6jrrqs9c6n1clnnd";
|
sha256 = "0x3mpwmhln6brwrwix9abdq1bs9zi4qnr3r64vwqk7l6f43mqd30";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake pkg-config pandoc docutils ];
|
nativeBuildInputs = [ cmake pkg-config pandoc docutils ];
|
||||||
|
|
Loading…
Reference in a new issue