mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 19:33:03 +00:00
e0464e4788
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
64 lines
1.5 KiB
Nix
64 lines
1.5 KiB
Nix
{ lib, wrapQtAppsHook, fetchFromGitHub, substituteAll, udev, stdenv
|
|
, pkg-config, qtbase, cmake, zlib, kmod, libXdmcp, qttools, qtx11extras, libdbusmenu, gnused
|
|
, withPulseaudio ? stdenv.hostPlatform.isLinux, libpulseaudio, quazip
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.6.0";
|
|
pname = "ckb-next";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ckb-next";
|
|
repo = "ckb-next";
|
|
rev = "v${version}";
|
|
hash = "sha256-G0cvET3wMIi4FlBmaTkdTyYtcdVGzK4X0C2HYZr43eg=";
|
|
};
|
|
|
|
buildInputs = [
|
|
udev
|
|
qtbase
|
|
zlib
|
|
libXdmcp
|
|
qttools
|
|
qtx11extras
|
|
libdbusmenu
|
|
quazip
|
|
] ++ lib.optional withPulseaudio libpulseaudio;
|
|
|
|
nativeBuildInputs = [
|
|
wrapQtAppsHook
|
|
pkg-config
|
|
cmake
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DINSTALL_DIR_ANIMATIONS=libexec"
|
|
"-DUDEV_RULE_DIRECTORY=lib/udev/rules.d"
|
|
"-DFORCE_INIT_SYSTEM=systemd"
|
|
"-DDISABLE_UPDATER=1"
|
|
];
|
|
|
|
patches = [
|
|
./install-dirs.patch
|
|
(substituteAll {
|
|
name = "ckb-next-modprobe.patch";
|
|
src = ./modprobe.patch;
|
|
inherit kmod;
|
|
})
|
|
];
|
|
|
|
postInstall = ''
|
|
substituteInPlace "$out/lib/udev/rules.d/99-ckb-next-daemon.rules" \
|
|
--replace-fail "/usr/bin/env sed" "${lib.getExe gnused}"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Driver and configuration tool for Corsair keyboards and mice";
|
|
homepage = "https://github.com/ckb-next/ckb-next";
|
|
license = licenses.gpl2Only;
|
|
platforms = platforms.linux;
|
|
mainProgram = "ckb-next";
|
|
maintainers = [ ];
|
|
};
|
|
}
|