easytier: 2.1.1 -> 2.1.2 (#376259)
[NixPkgs.git] / pkgs / by-name / li / libphidget22 / package.nix
blobf3fa7d72f1c62b6b2237c3c2d74fa4c4734ec922
2   lib,
3   stdenv,
4   fetchurl,
5   automake,
6   libusb1,
7 }:
8 let
9   # This package should be updated together with libphidget22extra
10   version = "1.21.20241122";
12 stdenv.mkDerivation {
13   pname = "libphidget22";
14   inherit version;
16   src = fetchurl {
17     url = "https://www.phidgets.com/downloads/phidget22/libraries/linux/libphidget22/libphidget22-${version}.tar.gz";
18     hash = "sha256-6Sib9CSaPUbAdyHfoSgQ6g4oik7+pjb7g79QftSeVIk=";
19   };
21   nativeBuildInputs = [ automake ];
23   buildInputs = [ libusb1 ];
25   strictDeps = true;
27   meta = {
28     description = "Phidget Inc sensor boards and electronics Library";
29     homepage = "https://www.phidgets.com/docs/OS_-_Linux";
30     license = lib.licenses.bsd3;
31     maintainers = with lib.maintainers; [ mksafavi ];
32     platforms = lib.platforms.linux;
33   };