mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 06:23:36 +00:00
38 lines
792 B
Nix
38 lines
792 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
automake,
|
|
libusb1,
|
|
libphidget22,
|
|
}:
|
|
let
|
|
version = "1.20.20240909";
|
|
in
|
|
stdenv.mkDerivation {
|
|
pname = "libphidget22extra";
|
|
inherit version;
|
|
|
|
src = fetchurl {
|
|
url = "https://www.phidgets.com/downloads/phidget22/libraries/linux/libphidget22extra/libphidget22extra-${version}.tar.gz";
|
|
hash = "sha256-/08pzaGeWSAbHezE0BOayWdp+iv+DtrHMVN7CJlZAJc=";
|
|
};
|
|
|
|
nativeBuildInputs = [ automake ];
|
|
|
|
buildInputs = [
|
|
libphidget22
|
|
libusb1
|
|
];
|
|
|
|
strictDeps = true;
|
|
|
|
meta = {
|
|
description = "Phidget Inc sensor boards and electronics extras library";
|
|
homepage = "https://www.phidgets.com/docs/OS_-_Linux";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = with lib.maintainers; [ mksafavi ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|