mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-30 03:56:12 +01:00
41 lines
842 B
Nix
41 lines
842 B
Nix
|
{ hidapitester, ... }:
|
||
|
final: prev:
|
||
|
{
|
||
|
magic_rb = prev.magic_rb or {} // {
|
||
|
hidapitester = prev.stdenv.mkDerivation {
|
||
|
pname = "hidapitester";
|
||
|
version = "0.2";
|
||
|
|
||
|
buildInputs = with prev;
|
||
|
[ libudev
|
||
|
];
|
||
|
|
||
|
nativeBuildInputs = with prev;
|
||
|
[ pkg-config
|
||
|
];
|
||
|
|
||
|
unpackPhase = ''
|
||
|
runHook preUnpack
|
||
|
|
||
|
install -d /build/source/hidapi
|
||
|
install -d /build/source/hidapitester
|
||
|
|
||
|
cp -r ${prev.hidapi.src}/. /build/source/hidapi
|
||
|
cp -r ${hidapitester}/. /build/source/hidapitester
|
||
|
|
||
|
chmod -R 755 /build/source
|
||
|
|
||
|
runHook postUnpack
|
||
|
'';
|
||
|
|
||
|
HIDAPI_DIR = "/build/source/hidapi";
|
||
|
sourceRoot = "/build/source/hidapitester";
|
||
|
|
||
|
installPhase = ''
|
||
|
install -d $out/bin
|
||
|
install hidapitester $out/bin
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
}
|