2021-01-15 22:18:51 +00:00
|
|
|
{ lib, stdenv, pkgconfig, autoreconfHook,
|
2020-04-24 23:36:52 +00:00
|
|
|
glib, libzip, libserialport, check, libusb1, libftdi,
|
|
|
|
systemd, alsaLib, dsview
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
inherit (dsview) version src;
|
|
|
|
|
|
|
|
pname = "libsigrok4dsl";
|
|
|
|
|
|
|
|
postUnpack = ''
|
|
|
|
export sourceRoot=$sourceRoot/libsigrok4DSL
|
|
|
|
'';
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
glib libzip libserialport libusb1 libftdi systemd check alsaLib
|
|
|
|
];
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "A fork of the sigrok library for usage with DSView";
|
|
|
|
homepage = "https://www.dreamsourcelab.com/";
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.bachp ];
|
|
|
|
};
|
|
|
|
}
|