Commit 4f9fb7a8 authored by Nicolas Benes's avatar Nicolas Benes Committed by Bjørn Forsman
Browse files

pulseview: 0.4.2-unstable-2024-01-26 -> 0.4.2-unstable-2024-03-14

parent 2b789f60
Loading
Loading
Loading
Loading
+41 −11
Original line number Diff line number Diff line
{ lib, stdenv, fetchgit, pkg-config, cmake, glib, boost, libsigrok
, libsigrokdecode, libserialport, libzip, libftdi1, hidapi, glibmm
, pcre, python3, qtsvg, qttools, bluez
, wrapQtAppsHook, desktopToDarwinBundle
{ lib
, stdenv
, fetchgit
, pkg-config
, cmake
, glib
, boost
, libsigrok
, libsigrokdecode
, libserialport
, libzip
, libftdi1
, hidapi
, glibmm
, pcre
, python3
, qtsvg
, qttools
, bluez
, wrapQtAppsHook
, desktopToDarwinBundle
}:

stdenv.mkDerivation rec {
  pname = "pulseview";
  version = "0.4.2-unstable-2024-01-26";
  version = "0.4.2-unstable-2024-03-14";

  src = fetchgit {
    url = "git://sigrok.org/pulseview";
    rev = "9b8b7342725491d626609017292fa9259f7d5e0e";
    hash = "sha256-UEJunADzc1WRRfchO/n8qqxnyrSo4id1p7gLkD3CKaM=";
    rev = "d00efc65ef47090b71c4da12797056033bee795f";
    hash = "sha256-MwfMUqV3ejxesg+3cFeXVB5hwg4r0cOCgHJuH3ZLmNE=";
  };

  nativeBuildInputs = [ cmake pkg-config qttools wrapQtAppsHook ]
    ++ lib.optional stdenv.isDarwin desktopToDarwinBundle;
  nativeBuildInputs = [
    cmake
    pkg-config
    qttools
    wrapQtAppsHook
  ] ++ lib.optional stdenv.isDarwin desktopToDarwinBundle;

  buildInputs = [
    glib boost libsigrok libsigrokdecode libserialport libzip libftdi1 hidapi glibmm
    pcre python3
    glib
    boost
    libsigrok
    libsigrokdecode
    libserialport
    libzip
    libftdi1
    hidapi
    glibmm
    pcre
    python3
    qtsvg
  ] ++ lib.optionals stdenv.isLinux [ bluez ];