mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
ca691e8f42
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/libratbag/versions
36 lines
939 B
Nix
36 lines
939 B
Nix
{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig
|
|
, glib, systemd, udev, libevdev, gitMinimal, check, valgrind, swig, python3 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libratbag-${version}";
|
|
version = "0.9.905";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "libratbag";
|
|
repo = "libratbag";
|
|
rev = "v${version}";
|
|
sha256 = "0bh1nf9sv7wka0vh5bz9krf2cfxz0rr64hrpdm7imsb6cn39k01y";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson ninja pkgconfig gitMinimal swig check valgrind
|
|
];
|
|
|
|
buildInputs = [
|
|
glib systemd udev libevdev
|
|
(python3.withPackages (ps: with ps; [ evdev pygobject3 ]))
|
|
];
|
|
|
|
mesonFlags = [
|
|
"-Dsystemd-unit-dir=./lib/systemd/system/"
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Configuration library for gaming mice";
|
|
homepage = https://github.com/libratbag/libratbag;
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ mvnetbiz ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|