46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
29 lines
685 B
Nix
29 lines
685 B
Nix
{ stdenv, pkgconfig, autoreconfHook,
|
|
glib, libzip, libserialport, check, libusb, libftdi,
|
|
systemd, alsaLib, dsview
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
inherit (dsview) version src;
|
|
|
|
pname = "libsigrok4dsl";
|
|
|
|
postUnpack = ''
|
|
export sourceRoot=$sourceRoot/libsigrok4DSL
|
|
'';
|
|
|
|
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
|
|
|
buildInputs = [
|
|
glib libzip libserialport libusb libftdi systemd check alsaLib
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
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 ];
|
|
};
|
|
}
|