mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
24 lines
804 B
Nix
24 lines
804 B
Nix
{ lib, stdenv, fetchgit, autoreconfHook, pkg-config, glib, libsigrok, libsigrokdecode }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "sigrok-cli";
|
|
version = "0.7.2-unstable-2023-04-10";
|
|
|
|
src = fetchgit {
|
|
url = "git://sigrok.org/sigrok-cli";
|
|
rev = "9d9f7b82008e3b3665bda12a63a3339e9f7aabc3";
|
|
hash = "sha256-B2FJxRkfKELrtqxZDv5QTvntpu9zJnTK15CAUYbf+5M=";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
|
buildInputs = [ glib libsigrok libsigrokdecode ];
|
|
|
|
meta = with lib; {
|
|
description = "Command-line frontend for the sigrok signal analysis software suite";
|
|
mainProgram = "sigrok-cli";
|
|
homepage = "https://sigrok.org/";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
maintainers = with maintainers; [ bjornfor vifino ];
|
|
};
|
|
}
|