-
-
Notifications
You must be signed in to change notification settings - Fork 272
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NixOS Derivation #420
Comments
@FredM7, { lib, stdenv, fetchFromGitHub, pkg-config, cmake, udev, libevdev, libconfig, glib }:
stdenv.mkDerivation rec {
pname = "logiops";
version = "0.3.1";
src = fetchFromGitHub {
owner = "pixlone";
repo = "logiops";
rev = "v${version}";
sha256 = "sha256-1KrehE+eHXPth4kVHh1HZgqZqL+2Fi+k3IhPKunINXs=";
fetchSubmodules = true;
};
PKG_CONFIG_SYSTEMD_SYSTEMDSYSTEMUNITDIR = "${placeholder "out"}/lib/systemd/system";
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ udev libevdev libconfig glib ];
meta = with lib; {
description = "Unofficial userspace driver for HID++ Logitech devices";
homepage = "https://github.com/PixlOne/logiops";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ ckie ];
platforms = with platforms; linux;
};
} It seems, that 0.3.1 is the last version, which at least launches on Nix. All consequent versions exit silently with return code 0 |
thanks @Serpentian i think that did the trick 💪🏻 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, I see some related issues here:
But im not exactly sure what im missing extra. Maybe someone with more experience can point out what i missing.
This is my derivation:
I get some errors though:
Is there anything specific i can do to fix this? Seems to be coming from
ipcgull
?The text was updated successfully, but these errors were encountered: