forked from mirrors/nixpkgs
b189247ba0
Uses the HTTPS url for cases where the existing URL has a permanent redirect. For each domain, at least one fixed derivation URL was downloaded to test the domain is properly serving downloads. Also fixes jbake source URL, which was broken.
31 lines
910 B
Nix
31 lines
910 B
Nix
{ stdenv, fetchurl, pkgconfig, cmake, glib, boost, libsigrok
|
|
, libsigrokdecode, libserialport, libzip, udev, libusb1, libftdi1, glibmm
|
|
, pcre, librevisa, python3, qtbase, qtsvg
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "pulseview-0.4.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://sigrok.org/download/source/pulseview/${name}.tar.gz";
|
|
sha256 = "1f8f2342d5yam98mmcb8f9g2vslcwv486bmi4x45pxn68l82ky3q";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
|
|
|
buildInputs = [
|
|
glib boost libsigrok libsigrokdecode libserialport libzip udev libusb1 libftdi1 glibmm
|
|
pcre librevisa python3 qtbase qtsvg
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Qt-based LA/scope/MSO GUI for sigrok (a signal analysis software suite)";
|
|
homepage = https://sigrok.org/;
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.bjornfor ];
|
|
};
|
|
}
|