mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-17 11:13:30 +00:00
77 lines
1.6 KiB
Nix
77 lines
1.6 KiB
Nix
|
{ lib, stdenv, fetchFromGitHub, pkg-config, gettext, python3, python3Packages
|
||
|
, meson, cmake, ninja, udev, appstream, appstream-glib, desktop-file-utils, gtk3
|
||
|
, wrapGAppsHook, gobject-introspection, bash, }:
|
||
|
let
|
||
|
python = python3.withPackages (p:
|
||
|
with p; [
|
||
|
pygobject3
|
||
|
pyudev
|
||
|
pyxdg
|
||
|
evdev
|
||
|
matplotlib
|
||
|
scipy
|
||
|
gtk3
|
||
|
pygobject3
|
||
|
]);
|
||
|
|
||
|
version = "0.7.2";
|
||
|
in stdenv.mkDerivation {
|
||
|
inherit version;
|
||
|
|
||
|
pname = "oversteer";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "berarma";
|
||
|
repo = "oversteer";
|
||
|
rev = version;
|
||
|
sha256 = "sha256-9MWRb0NXUbB8c+pH0mjUzsz849PmEjsZMhQr4wsmlKI=";
|
||
|
};
|
||
|
|
||
|
buildInputs = [ bash gtk3 ];
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
pkg-config
|
||
|
gettext
|
||
|
python
|
||
|
wrapGAppsHook
|
||
|
gobject-introspection
|
||
|
meson
|
||
|
udev
|
||
|
ninja
|
||
|
appstream
|
||
|
appstream-glib
|
||
|
desktop-file-utils
|
||
|
];
|
||
|
|
||
|
dontUseCmakeConfigure = true;
|
||
|
|
||
|
propagatedBuildInputs = [ python gtk3 python3Packages.pygobject3 ];
|
||
|
|
||
|
mesonFlags = [
|
||
|
"--prefix"
|
||
|
(placeholder "out")
|
||
|
"-Dudev_rules_dir=${placeholder "out"}/lib/udev/rules.d/"
|
||
|
];
|
||
|
|
||
|
preFixup = ''
|
||
|
gappsWrapperArgs+=(
|
||
|
--prefix XDG_DATA_DIRS : "${gtk3}/share/gsettings-schemas/${gtk3.name}"
|
||
|
)
|
||
|
'';
|
||
|
|
||
|
postInstall = ''
|
||
|
substituteInPlace $out/lib/udev/rules.d/* \
|
||
|
--replace /bin/sh ${bash}/bin/sh
|
||
|
'';
|
||
|
|
||
|
patches = [ ./fix-install-dir.patch ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
homepage = "https://github.com/berarma/oversteer";
|
||
|
description = "Steering Wheel Manager for Linux";
|
||
|
license = licenses.gpl3;
|
||
|
maintainers = [ maintainers.srounce ];
|
||
|
platforms = platforms.unix;
|
||
|
};
|
||
|
}
|