Add intelij idea community. Formatting in packages and fixes after update to 26.05

This commit is contained in:
2026-06-11 22:25:21 +02:00
parent ba3310fb53
commit cdfb9779d5
14 changed files with 309 additions and 166 deletions
+26 -8
View File
@@ -1,4 +1,17 @@
{ pkgs, lib, xorg, stdenv, openssl, libdrm, zlib, dpkg, patchelf, fetchurl }:
{
pkgs,
lib,
stdenv,
openssl,
libdrm,
zlib,
dpkg,
patchelf,
fetchurl,
libX11,
libxcb,
libxshmfence,
}:
let
sources = import ./amdgpu-src.nix { inherit fetchurl; };
@@ -9,9 +22,11 @@ stdenv.mkDerivation rec {
pname = "amdgpu-pro-vulkan-${suffix}";
version = sources.version;
src = if stdenv.system == "x86_64-linux" then sources.bit64.vulkan-amdgpu-pro else sources.bit32.vulkan-amdgpu-pro;
src =
if stdenv.system == "x86_64-linux" then
sources.bit64.vulkan-amdgpu-pro
else
sources.bit32.vulkan-amdgpu-pro;
dontPatchELF = true;
sourceRoot = ".";
@@ -23,9 +38,9 @@ stdenv.mkDerivation rec {
libdrm
openssl
stdenv.cc.cc.lib
xorg.libX11
xorg.libxcb
xorg.libxshmfence
libX11
libxcb
libxshmfence
zlib
];
rpath = lib.makeLibraryPath buildInputs;
@@ -47,6 +62,9 @@ stdenv.mkDerivation rec {
description = "AMD Proprietary Driver For Vulkan";
homepage = "https://www.amd.com";
license = licenses.unfree;
platforms = [ "x86_64-linux" "i686-linux" ];
platforms = [
"x86_64-linux"
"i686-linux"
];
};
}