1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/by-name/fo/footswitch/package.nix

36 lines
949 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, pkg-config, hidapi }:
stdenv.mkDerivation {
pname = "footswitch";
2022-05-28 02:45:42 +01:00
version = "unstable-2022-04-12";
src = fetchFromGitHub {
owner = "rgerganov";
repo = "footswitch";
2022-05-28 02:45:42 +01:00
rev = "1cf63643e18e688e4ebe96451db24edf52338cc0";
sha256 = "0gfvi2wgrljndyz889cjjh2q13994fnaf11n7hpdd82c4wgg06kj";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ hidapi ];
postPatch = ''
substituteInPlace Makefile \
--replace /usr/local $out \
--replace /usr/bin/install install \
2022-05-28 02:45:42 +01:00
--replace /etc/udev $out/lib/udev
'';
preInstall = ''
mkdir -p $out/bin $out/lib/udev/rules.d
'';
meta = with lib; {
description = "Command line utlities for programming PCsensor and Scythe foot switches.";
homepage = "https://github.com/rgerganov/footswitch";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ baloo ];
};
}