Merge branch 'master' into staging-next

There ver very many conflicts, basically all due to
name -> pname+version.  Fortunately, almost everything was auto-resolved
by kdiff3, and for now I just fixed up a couple evaluation problems,
as verified by the tarball job.  There might be some fallback to these
conflicts, but I believe it should be minimal.

Hydra nixpkgs: ?compare=1538299
This commit is contained in:
Vladimír Čunát
2019-08-24 08:55:37 +02:00
865 changed files with 29587 additions and 14316 deletions
@@ -1,13 +1,14 @@
{ stdenv, fetchurl, pkgconfig, cmake, glib, boost, libsigrok
{ mkDerivation, lib, 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.1";
mkDerivation rec {
pname = "pulseview";
version = "0.4.1";
src = fetchurl {
url = "https://sigrok.org/download/source/pulseview/${name}.tar.gz";
url = "https://sigrok.org/download/source/pulseview/${pname}-${version}.tar.gz";
sha256 = "0bvgmkgz37n2bi9niskpl05hf7rsj1lj972fbrgnlz25s4ywxrwy";
};
@@ -15,16 +16,15 @@ stdenv.mkDerivation rec {
buildInputs = [
glib boost libsigrok libsigrokdecode libserialport libzip udev libusb1 libftdi1 glibmm
pcre librevisa python3 qtbase qtsvg
pcre librevisa python3
qtbase qtsvg
];
enableParallelBuilding = true;
meta = with stdenv.lib; {
meta = with lib; {
description = "Qt-based LA/scope/MSO GUI for sigrok (a signal analysis software suite)";
homepage = https://sigrok.org/;
license = licenses.gpl3Plus;
maintainers = with maintainers; [ bjornfor ];
platforms = platforms.linux;
maintainers = [ maintainers.bjornfor ];
};
}