Skip to content

Commit

Permalink
libusbp: init at 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bzizou committed Jan 11, 2024
1 parent 24a9963 commit 6a9e3f4
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions pkgs/by-name/li/libusbp/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{ lib
, stdenv
, fetchFromGitHub
, udev
, cmake
, pkg-config
}:

stdenv.mkDerivation(finalAttrs: {
pname = "libusbp";
version = "1.3.0";

src = fetchFromGitHub {
owner = "pololu";
repo = "libusbp";
rev = "refs/tags/${finalAttrs.version}";
sha256 = "sha256-60xpJ97GlqEcy2+pxGNGPfWDnbIFGoPXJijaErOBXQs=";
};

outputs = [ "out" "dev" ];

nativeBuildInputs = [ cmake pkg-config ];
propagatedBuildInputs = [ udev ];

meta = with lib; {
homepage = "https://github.com/pololu/libusbp";
description = "Pololu USB Library (also known as libusbp)";
longDescription = ''
libusbp is a cross-platform C library for accessing USB devices
'';
platforms = platforms.all;
license = licenses.cc-by-sa-30;
maintainers = with maintainers; [ bzizou ];
};
})

0 comments on commit 6a9e3f4

Please sign in to comment.